Change password for requesting user
The POST /users/self/changePassword
endpoint changes the password of the user making the request.
In this page
Headers
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
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:
{ "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.
Try it out
For information, see Trying out Vonage Contact Center APIs.