GET
/
vm
/
{vm_id}
/
backups
Get all backups of the VM
curl --request GET \
  --url https://api.cloud.onidel.com/vm/{vm_id}/backups \
  --header 'Authorization: <api-key>'
[
  {
    "id": "c1d45377-b2a9-4407-ab8d-6909c34dfaac",
    "created_at": "2025-01-05T13:00:20.010Z",
    "size": 20,
    "instance": "c1d45377-b2a9-4407-ab8d-6909c34dfaac",
    "status": "available"
  }
]

Authorizations

Authorization
string
header
required

Provide the value as: Token <your-api-token>

Path Parameters

vm_id
string<uuid>
required

VM UUID that need to be considered for filter

Query Parameters

team_id
string

Team ID that need to be considered for filter. Default team will be used if not provided.

Response

Successful operation

id
string<uuid>
Example:

"c1d45377-b2a9-4407-ab8d-6909c34dfaac"

created_at
string<datetime>
Example:

"2025-01-05T13:00:20.010Z"

size
integer
Example:

20

instance
string<uuid>
Example:

"c1d45377-b2a9-4407-ab8d-6909c34dfaac"

status
enum<string>
Available options:
available,
pending