Change user password
Allow the user to change his password. Requires current password for verification and password confirmation to ensure accuracy.
POST
/auth/change-password
curl \
--request POST 'http://api.example.com/auth/change-password' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"old_password":"string","password":"string","password_2":"string"}'
Request examples
{
"old_password": "string",
"password": "string",
"password_2": "string"
}