Skip to main content
GET
/
api
/
snapshots
List all snapshots for the authenticated user.
curl --request GET \
  --url https://api.rigbox.dev/api/snapshots \
  --header 'Authorization: Bearer <token>'
{
  "snapshots": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "name": "<string>",
      "size_mb": 123,
      "workspace_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

User snapshots

snapshots
object[]
required