v1
latestOpenAPI 3.0.32026-07-246376162.1 KBReporting
Get CDR events
Returns paginated list of events for a specific CDR.
get/api/v4/reporting/cdrs/{cdr_id}/events
Path parameters
cdr_idstring uuid required
Example:7d7f8c74-da08-4eb3-b779-41364c129d8a
The unique identifier of the CDR.
Query parameters
limitinteger
The number of items to return.
offsetinteger
The number of items to skip before starting to collect the result set.
Response
OK
Example response
{
"cdr_events": [
{
"id": "775a5558-59a6-4468-a502-0deef2a3315d:1737775657101:dialing",
"event": "dialing",
"duration": 11.133,
"user": {
"id": 1,
"name": "Jane Doe",
"email": "jane.doe@contactcenter.com",
"name_snapshot": "Snapshot name"
},
"queue": {
"id": 1,
"name": "Technical Support",
"name_snapshot": "Snapshot name"
},
"manager": true,
"started_at": "2026-01-15T03:27:37.101000Z",
"ended_at": "2026-01-15T03:27:48.234000Z"
}
],
"metadata": {
"total": 100
}
}