Cancel a service cancellation request

Remove a previously submitted service cancellation request. This is useful if a customer changes their mind and wishes to keep their service. The endpoint returns a unique requestId for follow-up actions.

Path Parameters

accountId integer · min: 1 required Example

Unique account identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
DELETE https://cloud.hostup.se/api/cancellations/{accountId}
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/cancellations/7148" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string",
    "info": [
      "string"
    ]
  }
}