Validate a password reset token

Validate a token sent to your email address during a password reset request. A unique 'requestId' is returned, potentially needed for subsequent API calls.

Headers

Accept Example
Content-Type Example

Body

required
application/json
token string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/password-reset/validate
For AI assistants
cURL
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"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "valid": true,
    "email": "string",
    "expiresAt": "string"
  }
}
Request Body
{
  "token": "string"
}