Skip to main content
GET
/
api
/
v1
/
call-logs
List Call Logs
curl --request GET \
  --url https://api.example.com/api/v1/call-logs
{
  "call_logs": [
    {
      "id": "<string>",
      "to": "<string>",
      "from_": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "call_length": "<string>",
      "call_ended_reason": "<string>",
      "call_categorization": {},
      "agent_data": {},
      "campaign_target_id": "<string>",
      "post_call_data": {},
      "qa": {},
      "transcripts": [
        {}
      ]
    }
  ],
  "page_count": 123,
  "next_page": 123
}

Query Parameters

page
integer
default:0

The page number to get.

limit
integer
default:200

The number of call logs per page.

from_date
string<date-time> | null

Filter logs from this date.

to_date
string<date-time> | null

Filter logs until this date.

campaign_id
string | null

Filter logs by campaign ID.

Response

Successful Response

call_logs
CallLogListExportInformation · object[]
required
page_count
integer
required
next_page
integer | null
required