API referenceOperations
List checkpoint capture history
GET
/v1/sessions/{session_id}/checkpointsReturns checkpoints captured by this session, including deletion tombstones. This audit history is not a list of valid rewind targets; use the ancestry collection for that.
Authorization
apiKey AuthorizationBearer <token>
In: header
Path Parameters
session_id*string
Match
^sess_[0-9a-f]{16}([0-9a-f]{16})?$Query Parameters
limit?integer
Maximum items to return. Defaults to 50.
Range
1 <= value <= 100Default
50cursor?string
Opaque signed cursor returned by the preceding page. It is scoped to the authenticated project, collection, session, filters, and order.
Length
length <= 2048Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
{ "items": [ { "id": "string", "capture_session_id": "string", "parent_id": "string", "operation_id": "string", "label": "string", "lifecycle": "creating", "durability": "none", "is_head": true, "created_at": "2019-08-24T14:15:22Z", "expires_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "logical_size_bytes": 0 } ], "next_cursor": "string"}