Skip to main content

Update password of User


ApiScope: manage.user.write
API Scope Level: ServiceSubscriberScope
Path Parameters
    user_uuid string required
Request Body required
    oldPassword string
    newPassword string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
POST /v2/user/updateUserPassword/:user_uuid

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
user_uuid — path required
Body required
{
"oldPassword": "string",
"newPassword": "string"
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/user/updateUserPassword/:user_uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"oldPassword": "string",
"newPassword": "string"
}'