Delete a snapshot of your virtual server.

Use this option to delete a snapshot of your virtual server. This can be useful if you have deleted a snapshot you no longer need or want to free up disk space.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Query Parameters

snapname string required
action string · enum required
delete
rollback

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
DELETE https://cloud.hostup.se/api/vm/{vmid}/snapshots
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/vm/16018/snapshots?snapname=string&action=delete" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "jobId": "string",
    "action": "string",
    "snapname": "string",
    "message": "string"
  }
}