Reset the password for a user account

Reset a forgotten password by sending an email with a link to create a new one. The endpoint returns a unique ID to track the request status.

Headers

Accept Example
Content-Type Example

Body

required
application/json
email string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/password-reset
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/password-reset" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "linkDispatched": true,
    "expiresInMinutes": 0
  }
}
Request Body
{
  "email": "string"
}