Get scheduled snapshot times for a virtual server

See when automatic snapshots are taken for your virtual server. This is useful for understanding your backup strategy and ensuring you have recovery points.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/vm/{vmid}/snapshot-schedules
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/vm/16018/snapshot-schedules" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "schedule": "string",
    "limits": {
      "totalSnapshots": 0
    }
  }
}