Force Password Reset

The force password reset flow is initiated during a request to

POST /api/1/oauth2/access_token?locale=nl_NL. 

Payload

{
    "grant_type": "password",
    "client_id": "<CLIENT_ID>",
    "client_secret": "<CLIENT_SECRET>",
    "username": "<USERNAME>",
    "password": "<PASSWORD>"
}

An invalid credential that requires a password update would have the sample response

{
    "error": "password_change_required",
    "error_description": "You need to change your password",
    "message": "You need to change your password"
}