Reset Password with Token

POST

/v1/passwords/reset

Validates the reset token and updates the user account password.

Parameters

NameTypeDescription
reset_password_tokenrequiredstringToken received in email
passwordrequiredstringNew password (min 8 chars, mixed case, number, symbol)
password_confirmationrequiredstringMatching password confirmation

Responses

200Password updated
{
  "data": {
    "message": "Password has been successfully reset. Please log in with your new password."
  }
}
422Validation failed
{
  "errors": [
    {
      "field": "reset_password_token",
      "message": "is invalid or expired"
    }
  ]
}