Complete password reset for customer accounts

Complete the password reset process after a user has requested it and received a token. It returns a unique ID (requestId) for tracking the operation's status or initiating related processes. The password reset token is typically obtained from other API calls related to security or payments.

Headers

Accept Example
Content-Type Example

Body

required
application/json
token string required
password string required

Responses

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