https://api.ssdnodes.com/servers/{vm_id}/restore-snapshot
Authorization: Bearer 123456789123456789123456789123456789
Content-Type: application/json
Parameter | Values Allowed | Default Value | Description |
---|---|---|---|
vm_id* | <VM ID> | ID of the VM | |
snapshot_name* | <Snapshot Name> | Name of the snapshot |
[
{
"status": "success",
"msg": "Restoring snapshot added in queue. It will take some time.
Check your dashboard or use the API request "List VM Details" for updates."
}
]
[
{
"status": "error",
"msg": "Snapshot does not exist."
}
]
curl -X POST https://api.ssdnodes.com/servers/1510/restore-snapshot -H "Authorization: Bearer 123456789123456789123456789123456789" -H "Content-Type: application/json" -d "{\"snapshot_name\":\"20250502_daily\"}"
Copied!