List VM Snapshots

Get a specific VM's snapshots.

You will need first to: Reminder:
• A snapshot is an automated or on-demand backed-up image of the VM.
• Note that the snapshots are stored on the same node where the VM is running.

Request URL Format:

https://api.ssdnodes.com/servers/{vm_id}/snapshots

Header Format:

Authorization: Bearer 123456789123456789123456789123456789

Request Parameters:

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

Success Response Format:

[ "20250502_daily", "20250503_daily", "20250504_daily", "20250505_daily", "20250506_daily", "20250507_daily", "20250508_on_demand" ]

Error Response Format:

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

CURL Example

                curl -X GET https://api.ssdnodes.com/servers/1234/snapshots -H "Authorization: Bearer 123456789123456789123456789123456789"
            

Copied!