Change your HostUp account password

Change the password for your HostUp customer account as a security measure. After a successful change, a request ID is returned to verify the change in other systems.

Headers

Accept Example
Content-Type Example

Body

required
application/json
password string required

Responses

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