The POST /users/self/changePassword
endpoint changes the password of the user making the request.
Panel |
---|
borderColor | #eeeeee |
---|
bgColor | white |
---|
titleColor | white |
---|
borderWidth | 1 |
---|
titleBGColor | #7ec9f4 |
---|
borderStyle | solid |
---|
title | In this page |
---|
|
|
Insert excerpt |
---|
| _ExcerptAPICloudNextGen |
---|
| _ExcerptAPICloudNextGen |
---|
nopanel | true |
---|
|
Header parameters in Requests (User Admin API) apply to this endpoint.
Authorization scopes supported:
Scope | Access granted |
---|
users:write | Entire endpoint |
self:write | Entire endpoint |
Requests
Request password change
Code Block |
---|
language | powershell |
---|
theme | Midnight |
---|
|
curl -L -X POST "https://***.api.newvoicemedia.com/useradmin/users/self/changePassword" \
-H "Content-Type: application/json" \
-H "Accept: application/vnd.newvoicemedia.v4+json" \
-H "Authorization: Bearer <ACCESS_TOKEN>"
--data-raw "<JSON BODY>" |
Request body parameters
The endpoint requires the following parameters in the request body:
Code Block |
---|
|
{
"currentPassword": "old_password",
"newPassword": "new_password"
} |
where
currentPassword
. Requesting user’s current password.
newPassword
. Requesting user’s new password.
Responses
Successful response
Successful requests return a 200 Success
code and the created user.
Insert excerpt |
---|
| _ExcerptRunInPostman |
---|
| _ExcerptRunInPostman |
---|
nopanel | true |
---|
|