Auth

Changes a user password

Allows users with a valid reset token to reset their password without remembering their old password

post/auth/reset/password

Request body

tokenstring required

A reset token used to validate that the user is allowed to change the password.

passwordstring required

The new password for the user

Example request

{
  "token": "$2a$15$QzeW/y5/MEppCWVEkoX5euejobYOLSd4We21LQjjKlWH9l2I3wCke",
  "password": "correct horse battery staple"
}

Response

This response has no body.

Changes

No recorded changes to this endpoint across all 7 revisions of this API.