Validate Reset Token
get
/v1/auth/password/reset/validatePart of Auth.
Check if a password reset token is valid without consuming it. Returns masked email on success.
Authentication
This operation does not require an API key.
Query parameters
| Name | Type | Description |
|---|---|---|
tokenrequired | string | Password reset token |
Example request
curl
curl -X GET "https://api.robosystems.ai/v1/auth/password/reset/validate?token=<token>"Responses
200 Successful Response
| Field | Type | Description |
|---|---|---|
validrequired | boolean | Whether the token is valid |
emailoptional | string | Masked email address if token is valid |
| Status | Meaning |
|---|---|
| 400 | Invalid request |
| 422 | Validation Error |
| 429 | Rate limit exceeded |
| 500 | Internal server error |