Allow admin to change password for given user.

POST /actions/persons/{person_id}/change-password

Prior to modifying the password, it requires to be admin. An admin can't change other admins password. The new password requires a confirmation to ensure that the admin didn't make a mistake by typing the new password.

Path parameters

  • person_id string(uuid) Required
application/x-www-form-urlencoded

Body Required

  • password string(password) Required

    New password

  • password_2 string(password) Required

    Password confirmation

Responses

  • 200 application/json

    Password changed

    Hide response attribute Show response attribute object
    • success boolean
  • 400 application/json

    Invalid password or inactive user

    Hide response attribute Show response attribute object
    • error string
  • 404

    Person not found

POST /actions/persons/{person_id}/change-password
curl \
 --request POST 'http://api.example.com/actions/persons/a24a6ea4-ce75-4665-a070-57453082c25/change-password' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/x-www-form-urlencoded" \
 --data 'password=string&password_2=string'
Response examples (200)
{
  "success": true
}
Response examples (400)
{
  "error": "string"
}