DewaVPS

Create snapshot

POST
/instance/{instance_uuid}/snapshot/create

Create a new snapshot for a specific instance.

Authorization

ApiKeyAuth
x-apikey<token>

In: header

Path Parameters

instance_uuid*string

UUID of the instance

Formatuuid

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.dewavps.com/v1/instance/497f6eca-6276-4993-bfeb-53cbbbba6f08/snapshot/create" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'name=string&description=string'
{
  "message": "Creating snapshot...",
  "data": {
    "snap_uuid": "a88439f1-cde3-476b-b425-c47cb98ad703"
  }
}