Temporarily pause web hosting services

Temporarily pause your web hosting account for a specified period. This is useful if you do not need your website active for a while, such as during a vacation or site rebuild.

Path Parameters

accountId integer · min: 1 required Example

Unique account identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
days integer required

Responses

200
success boolean
timestamp string
requestId string
data object
500
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/hosting/{accountId}/pause
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/hosting/17457/pause" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "days": 0
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string",
    "pauseDetails": {
      "pauseStartsAt": "string",
      "resumeAt": "string",
      "days": 0
    },
    "nextInvoiceDate": "string",
    "reminderDate": "string"
  }
}
Request Body
{
  "days": 0
}