Skip to content

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
string
Required
Example"abc123def456"

Responses

Token is valid

application/json
JSON
{
  
"valid": true,
  
"minimum_password_length": 15
}

Playground

Server
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

Part of the MITRE Security Automation Framework (SAF)