POST
/
iam
/
accounts
/
v1
/
password_change
curl --request POST \
  --url https://api.mottostreaming.com/iam/accounts/v1/password_change \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "old_password": "<string>",
  "new_password": "<string>"
}'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
old_password
string
required
new_password
string
required

New password must not be less than 8 characters long, must contain at least one letter, must contain at least one number or special character and have not more than 3 repeating characters

Response

200
application/json
OK

The response is of type object.