Change person password
Allow admin to change password for given user. 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.
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/json" \
--data '{"password":"newSecurePassword123","password_2":"newSecurePassword123"}'
Request examples
{
"password": "newSecurePassword123",
"password_2": "newSecurePassword123"
}
Response examples (200)
{
"success": true
}
Response examples (400)
{
"error": true,
"message": "Password is too short."
}