Create a backup for your VPS

Initiate a manual backup of your virtual server (VPS). You will receive a jobId that you can then use to track the backup process's status and results via other API calls.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
mode string required
fleecing object required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/vm/{vmid}/backups
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/vm/10415/backups" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mode": "string",
    "fleecing": {
      "enabled": true,
      "storage": "string"
    }
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "jobId": "string",
    "mode": "string",
    "message": "string"
  }
}
Request Body
{
  "mode": "string",
  "fleecing": {
    "enabled": true,
    "storage": "string"
  }
}