Validate a token sent to your email address during a password reset request. A unique 'requestId' is returned, potentially needed for subsequent API calls.
Accept Example Content-Type Example token string required success boolean timestamp string requestId string data object https://cloud.hostup.se/api/password-reset/validate curl -X POST "https://cloud.hostup.se/api/password-reset/validate" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"token": "string"
}' {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"valid": true,
"email": "string",
"expiresAt": "string"
}
} {
"token": "string"
}