Snapshots
statusboolean
Whether the request succeeded.
Example:
truemessagestring
Human-readable description of the result.
Example:
Successfully retrieved Snapshotssnapshots object[]
An array of snapshots objects, each containing details about a snapshot.
Array [
created_atstring<date-time>
ISO 8601 UTC timestamp marking when the snapshot was created.
Example:
2026-05-06T16:04:09Zdescriptionstring
Description of the snapshot.
Example:
exampleidinteger
Unique numeric identifier for the snapshot.
Example:
1402namestring
Name of the snapshot.
Example:
example-snapshotsizeinteger
Size of the snapshot in GB.
Example:
0statusstring
Current status of the snapshot.
Example:
CREATINGupdated_atstring<date-time>
ISO 8601 UTC timestamp marking when the snapshot was last updated.
Example:
2026-05-06T16:04:09Zvm_idinteger
Identifier of the virtual machine the snapshot was created from.
Example:
2058has_floating_ipboolean
Whether the virtual machine had a floating IP when the snapshot was created.
Example:
falselabelsstring[]
Labels applied to the snapshot.
]
countinteger
Number of items returned in the current page.
Example:
0pageintegernullable
1-indexed page number of the current result set.
page_sizeintegernullable
Number of items per page in the current result set.
Snapshots
{
"status": true,
"message": "Successfully retrieved Snapshots",
"snapshots": [
{
"created_at": "2026-05-06T16:04:09Z",
"description": "example",
"id": 1402,
"is_image": false,
"name": "example-snapshot",
"region_id": 1129,
"size": 0,
"status": "CREATING",
"updated_at": "2026-05-06T16:04:09Z",
"vm_id": 2058,
"has_floating_ip": false,
"labels": [
"string"
]
}
],
"count": 0,
"page": 0,
"page_size": 0
}
Was this page helpful?