v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Case Management

Get case timeline

Returns the timeline of events for a case, including comments, status changes, and other activity. Supports pagination and sort order.

get/api/v2/cases/{case_id}/timelines

Path parameters

case_idstring required

Case's UUID or key

Query parameters

page[size]integer

Number of timeline cells to return per page.

page[number]integer

Zero-based page number for pagination.

sort[ascending]boolean

If true, returns timeline cells in chronological order (oldest first). Defaults to false (newest first).

Response

OK

Example response

{
  "data": [
    {
      "attributes": {
        "author": {
          "type": "USER"
        },
        "type": "COMMENT"
      },
      "id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
      "type": "timeline_cell"
    }
  ]
}