Access call history
- Dashboard
- From agent
- API
Navigate to Calls in the sidebar to view all calls.
Filter calls
By status
Filter calls by their final outcome:| Status | Description |
|---|---|
| Completed | Conversation finished successfully |
| Failed | Error occurred during call |
| Canceled | Call was canceled before completion |
| Running | Call currently in progress |
| Queued | Waiting in queue |
| Pending | Waiting to be queued |
| Created | Just created, not yet queued |
API example: Filter by status
API example: Filter by status
Filter by date range
Filter by date range
Filter by agent
Filter by agent
Full-text search
Full-text search
Search across transcripts and metadata:
View call details
Quick details
Click any call row to expand inline details:- Full call ID — Complete identifier for API operations
- Duration and timestamps — Precise timing information
- Agent configuration — Agent that handled the call
- Additional data — Custom metadata passed when scheduling
- Transcript preview — Quick view of conversation
Open Call Inspector
Click the Inspect button for full analysis:- Complete transcript with timestamps
- Audio recording playback
- Tool execution logs
- LLM interaction details
- Performance metrics
Call Inspector
Deep dive into individual calls
API response structure
Search call results
Request:POST /api/v1/callresults/search
Request body:
| Field | Type | Description |
|---|---|---|
page | integer | Page number (0-indexed) |
size | integer | Results per page (max 100) |
fromDate | DateTimeOffset | Filter start date |
toDate | DateTimeOffset | Filter end date |
agentIds | string[] | Filter by agents |
callStatuses | CallStatus[] | Filter by status |
searchText | string | Full-text search |
includeAggregations | boolean | Include statistics |
Example: Search response
Example: Search response
Get single call
Request:GET /api/v1/calls/{callId}
Returns call details including status, timestamps, and endpoint.
Get call queue
View scheduled and pending calls: Request:GET /api/v1/calls/queue/list
Query parameters:
| Parameter | Type | Description |
|---|---|---|
skip | integer | Items to skip |
take | integer | Items to return (max 1000) |
agentId | string | Filter by agent |
status | CallStatus[] | Filter by status |
fromDate | DateTimeOffset | Filter start date |
toDate | DateTimeOffset | Filter end date |
Call statistics
Get aggregated call statistics: Request:GET /api/v1/calls/statistics/statuses
Common tasks
Find failed calls
Find failed calls
Search by custom field
Search by custom field
Query calls using custom fields in additional data:
Get aggregations
Get aggregations
Call statuses reference
| Status | Description |
|---|---|
| Created | Call created but not yet queued |
| Pending | Waiting to be queued |
| Queued | In queue, waiting for resources |
| Running | Call in progress |
| Completed | Successfully finished |
| Failed | Error occurred |
| Canceled | Manually canceled or deadline exceeded |
What’s next
Call Inspector
Deep dive into individual calls
Conversations
Understand call transcripts
Concurrency Monitoring
Monitor active calls