GET /dashboard/service/{id}/vps/snapshots

Get VPS snapshots

Retrieve all snapshots for the VPS.

Parameters

NameTypeInDescription
id*
integerpathThe service ID of the VPS.

Response

200
403
404
successboolean
dataarray

Request

curl -X GET "https://api.royalehosting.net/dashboard/service/{id}/vps/snapshots" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-organization-id: YOUR_ORG_ID"

Response

{
  "success": true,
  "data": [
    {
      "name": "string",
      "created_at": "2024-01-15T10:30:00Z",
      "size": 0
    }
  ]
}