Restore VM Snapshot

Restore a previous VM snapshot among the previously taken automatically.

You will need first to: Warning: Restoring a VM snapshot will wipe out all your current data, and will restore it to the specified date. So please proceed with caution.

Request URL Format:

https://api.ssdnodes.com/servers/{vm_id}/restore-snapshot

Header Format:

Authorization: Bearer 123456789123456789123456789123456789
Content-Type: application/json

Request Parameters:

Parameter Values Allowed Default Value Description
vm_id* <VM ID>
N/A
ID of the VM
snapshot_name* <Snapshot Name>
N/A
Name of the snapshot

Success Response Format:

[ { "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." } ]

Error Response Format:

[ { "status": "error", "msg": "Snapshot does not exist." } ]

CURL Example

                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!