Get Vm Snapshot

Get Vm Snapshot

Get a specific snapshot of a VM

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/vm/{vmUrn}/snapshots/{snapshotId}
COPY
Path Parameters
string
vmUrn
Required

vmUrn

string
snapshotId
Required

snapshotId.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns VmSnapshot of type(s) application/json;version=39.1
This response body class contains all of the following: InlineVmSnapshot0 , InlineVmSnapshot1
{
    "id": "string",
    "name": "Snapshot Sample Name",
    "isCurrent": false,
    "state": "string",
    "storageConsumedMb": 0,
    "dateCreated": "string",
    "memory": false,
    "quiesce": false,
    "vappSnapshotId": "string",
    "parentSnapshotId": "string",
    "vm": {
        "name": "string",
        "id": "string"
    },
    "type": "string"
}

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/cloudapi/1.0.0/vm/{vmUrn}/snapshots/{snapshotId}