Delete a virtual server backup

Delete a specific backup for your virtual server (VM). Useful for freeing up storage space or cleaning old backups. Returns a requestId for tracking.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

volid string required Example

volid parameter

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
DELETE https://cloud.hostup.se/api/vm/{vmid}/backups/{volid}
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/vm/14498/backups/pbs-offsite-10g:backup/vm/3855/2025-10-30T19:02:02Z" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string"
  }
}