Debriefer

List timeline entries for an interview run

GET
/api/v1/interview-runs/{id}/timeline

Path Parameters

id*string

Query Parameters

limit?integer
Default20
Range1 <= value <= 100
starting_after?string

Response Body

application/json

curl -X GET "https://loading/api/v1/interview-runs/run_1234567890abcdef/timeline"
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "run_id": "string",
      "organization_id": "string",
      "test_mode": true,
      "type": "state_change",
      "timestamp": "string",
      "data": {
        "property1": null,
        "property2": null
      },
      "created_at": "string",
      "object": "timeline_entry"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}
Empty