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

Create snapshot

Create a new snapshot of the VPS.

Parameters

NameTypeInDescription
id*
integerpathThe service ID of the VPS.

Request Body

namestring

Name for the snapshot

Response

200
403
404
successboolean
dataobject

Request

curl -X POST "https://api.royalehosting.net/dashboard/service/{id}/vps/snapshots" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-organization-id: YOUR_ORG_ID" \
  -H "Content-Type: application/json" \
  -d '{}'

Response

{
  "success": true,
  "data": {}
}