Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The POST /users/self/changePassword endpoint changes the password of the user making the request.

Panel
borderColor#eeeeee
bgColorwhite
titleColorwhite
borderWidth1
titleBGColor#7ec9f4
borderStylesolid
titleIn this page

Table of Contents

Insert excerpt
_ExcerptAPICloudNextGen
_ExcerptAPICloudNextGen
nopaneltrue

Headers

Header parameters in Requests (User Admin API) apply to this endpoint.

Authorization scopes supported:

ScopeAccess granted
users:writeEntire endpoint
self:writeEntire endpoint

Requests

Request password change

Code Block
languagepowershell
themeMidnight
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
languagejs
themeMidnight
{
  "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
nopaneltrue