brawsrdocsv0.6
API referenceOperations

List currently rewindable checkpoint ancestry

GET/v1/sessions/{session_id}/ancestry

Returns only checkpoints reachable from the session's durable head/origin chain. These are the checkpoint IDs eligible for a rewind attempt, subject to their current lifecycle and durability.

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.

Range1 <= value <= 100
Default50
cursor?string

Opaque signed cursor returned by the preceding page. It is scoped to the authenticated project, collection, session, filters, and order.

Lengthlength <= 2048

Response 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"}