GET
/
v1
/
projects
/
{project}
/
boxes
/
{name}
/
snapshots
List snapshots for a box
curl --request GET \
  --url https://api.example.com/v1/projects/{project}/boxes/{name}/snapshots
[
  {
    "created_at": "<string>",
    "name": "<string>",
    "size_bytes": 1,
    "description": "<string>"
  }
]

Path Parameters

project
string
required

Project name

name
string
required

Box name

Response

List of snapshots

created_at
string
required
name
string
required
size_bytes
integer<int64>
required
Required range: x >= 0
description
string | null