Validate a password reset token
GET
/users/password/edit
Checks whether a password reset token is valid and not expired. The SPA calls this when the user follows the reset link to determine whether to show the reset form or an error message. Returns the minimum password length for client-side validation.
Parameters
Query Parameters
reset_password_token*
The raw reset token from the email link.
Type
Requiredstring
Example
"abc123def456"Responses
Token is valid
application/json
JSON "valid": true, "minimum_password_length": 15
{
}