Skip to main content
GET
List calls by agent ID
Returns a paginated list of calls for an agent. Authentication must grant access to the agent in the path. Repeat array query parameters such as status, sentiment, call_type, outcome, ended_reason, and mode to include multiple values. Dates use ISO 8601 date-time values, and durations are measured in seconds. Use campaign_id or ab_test_id to restrict results to a campaign or A/B test. The response’s total is the number of matching calls before limit and offset are applied.

Authorizations

X-Authorization
string
header
required

Path Parameters

agentId
string
required

The ID of the agent whose calls you want to retrieve

Query Parameters

limit
integer
default:100

Maximum number of results to return

offset
integer
default:0

Number of results to skip for pagination

customer_phone_number
string

Filter by customer phone number

campaign_id
string

Filter by campaign ID

ab_test_id
string

Filter by A/B test ID

status
enum<string>[]

Filter by call status (can specify multiple values)

Available options:
QUEUED,
IN_PROGRESS,
ENDED,
COMPLETED,
FAILED,
DNC,
REDIAL_SCHEDULED,
QUEUEING,
IN_WARM_TRANSFER
sentiment
enum<string>[]

Filter by sentiment (can specify multiple values)

Available options:
Positive,
Negative,
Neutral,
Unsure
call_type
enum<string>[]

Filter by call type (can specify multiple values)

Available options:
inboundPhoneCall,
outboundPhoneCall,
dailyCall,
webCall,
messagingSession,
callAndMessaging
outcome
string[]

Filter by call outcome (can specify multiple values)

ended_reason
string[]

Filter by call ended reason (can specify multiple values)

mode
string[]

Filter by call mode (can specify multiple values)

start_date
string<date-time>

Filter calls after this date (ISO 8601 datetime format)

end_date
string<date-time>

Filter calls before this date (ISO 8601 datetime format)

min_duration
number

Minimum call duration in seconds

max_duration
number

Maximum call duration in seconds

Response

Successful response

items
object[]
required

Array of call objects matching the filter criteria

total
integer
required

Total number of calls matching the filters (not limited by pagination)

limit
integer
required

The limit value used in the request

offset
integer
required

The offset value used in the request

Last modified on August 10, 2026