Skip to content

Change Password

PUT
/v1/users/change-password
curl --request PUT \
--url https://example.com/api/v1/users/change-password \
--header 'Authorization: <Authorization>' \
--header 'Content-Type: application/json' \
--data '{ "current": "example", "new": "example" }'

Password Payload

Media type application/json
object
current
string
new
string
Example generated
{
"current": "example",
"new": "example"
}

No Content