API Key Authentication. It should be included in the header of each request.
A page number within the paginated result set.
Number of results to return per page.
Filter results from this timestamp (e.g. 2025-01-01T00:00:00Z)
Example: 2025-01-01T00:00:00Z
Filter results to this timestamp (e.g. 2025-01-31T23:59:59Z)
Example: 2025-01-31T23:59:59Z
Comma-separated list of call log IDs
Example: 1,2,3
1Filter by agent ID
Example: 2142
Filter by assistant ID Example:
"asst_1234567890""agent_xyz789"1Advanced JSON filters using CallLogQueryFilter format (same as dashboard filters). Supports nested AND/OR conditions, field comparisons, and related field filtering.
Example - Simple filter:
{"field": "success", "op": "eq", "value": true}
Example - AND conditions:
{"operator": "and", "conditions": [{"field": "success", "op": "eq", "value": true}, {"field": "duration", "op": "gte", "value": 60}]}
Example - OR conditions:
{"operator": "or", "conditions": [{"field": "call_ended_reason", "op": "eq", "value": "completed"}, {"field": "call_ended_reason", "op": "eq", "value": "hangup"}]}
Supported fields: success, duration, call_id, timestamp, created_at, call_ended_reason, customer_number, etc. Supported operators: eq, neq, gt, gte, lt, lte, contains, startswith, in, isnull
1