List details for snapshots

Method URI Description
GET /v1.1/{tenant_id}/os-snapshots/detail Lists details for a specified snapshot.

Normal response codes: 200

Request

This table shows the URI parameters for the list details for snapshots request:

Name Type Description
{tenant_id} String The unique identifier of the project or account.

This operation does not require a request body.

Response

Example. List details for snapshots: JSON response


{
	"snapshots": [
		{
			"id": "3fbbcccf-d058-4502-8844-6feeffdf4cb5",
			"displayName": "snap-001",
			"displayDescription": "Daily backup",
			"volumeId": "521752a6-acf6-4b2d-bc7a-119f9148cd8c",
			"status": "available",
			"size": 30,
			"createdAt": "2012-02-29T03:50:07Z",
			"availability_zone":"jp-east-1a"
		},
		{
			"id": "e479997c-650b-40a4-9dfe-77655818b0d2",
			"displayName": "snap-002",
			"displayDescription": "Weekly backup",
			"volumeId": "76b8950a-8594-4e5b-8dce-0dfa9c696358",
			"status": "available",
			"size": 25,
			"createdAt": "2012-03-19T01:52:47Z",
			"availability_zone":"jp-east-1a"
		}
	]
}