v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-014102371.0 MB
Timeline

Get timeline events for a resource

Returns timeline events for the specified resource in WebhookMessage format.

get/timelines/{resource_type}/{resource_id}/events

Path parameters

resource_type'calls' | 'conferences' | 'flows' | 'activeflows' required

The type of resource (calls, conferences, flows, activeflows)

resource_idstring uuid required

The UUID of the resource

Query parameters

page_sizeinteger
Example:25

Number of results to return per page.

page_tokenstring

Cursor token for pagination. Use the next_page_token value from the previous response.

Response

A list of timeline events.

next_page_tokenstring

Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.

Example response

{
  "result": [
    {
      "timestamp": "2026-01-15T09:30:00.000000Z",
      "event_type": "call_created",
      "data": {}
    }
  ]
}