Cancel hosting or VPS services

Request cancellation of your hosting or VPS services. The service sends a cancellation request and returns a requestId to track the cancellation status in other API calls.

Headers

Accept Example
Content-Type Example

Body

required
application/json
accountId string required
type string · enum required
End of billing period
Immediate
reason string · enum required
Business closure
Found a better alternative
Moving to different provider
No longer needed
Poor performance
Technical issues
Too expensive
other
otherReason string

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/cancel-hosting
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/cancel-hosting" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "accountId": "string",
    "type": "End of billing period",
    "reason": "Business closure",
    "otherReason": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string",
    "info": [
      "string"
    ]
  }
}
Request Body
{
  "accountId": "string",
  "type": "End of billing period",
  "reason": "Business closure",
  "otherReason": "string"
}