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.
Accept Example Content-Type Example token string required password string required success boolean timestamp string requestId string data object https://cloud.hostup.se/api/password-reset/complete 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"
}' {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"success": true,
"reset": true
}
} {
"token": "string",
"password": "string"
}