Skip to main content
PUT
/
user
/
account
/
password
Update password
curl --request PUT \
  --url https://api.managem.co.uk/user/account/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "p@ssw0rd"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Password update payload after policy validation

password
string
required

The new password

Minimum string length: 8

Response

204

Password updated