List peer_events (raw, unfiltered)
List raw peer_events rows for the service agent's customer, matching either a contact's registered addresses (contact_id) or a single peer address (peer_type + peer_target). Exactly one filter is required.
Unlike GET /service_agents/contact_interactions, this endpoint applies NO identity resolution and NO CRM eligibility filtering: rows may include internal-resource peer types (agent, ai, conference, sip legs) that /service_agents/contact_interactions deliberately excludes. Clients are responsible for any presentation-layer filtering or grouping of this noise.
Query parameters
Filter by all of a contact's registered addresses. Exactly one of contact_id or peer_type+peer_target is required.
Remote endpoint type (e.g. "tel", "email"). Required with peer_target.
Remote endpoint target (e.g. "+155****4567"). Required with peer_type.
Number of results to return per page.
Cursor token for pagination. Use the next_page_token value from the previous response.
Response
Successful response.
Example response
{
"result": [
{
"timestamp": "2026-01-15T10:30:00.123000Z",
"customer_id": "7c4d2f3a-1b8e-4f5c-9a6d-3e2f1a0b4c5d",
"publisher": "call",
"event_type": "call_hangup",
"reference_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"direction": "incoming",
"peer": {
"type": "tel",
"target": "+14155551234",
"target_name": "John Smith",
"name": "Main Office",
"detail": "Primary contact number"
},
"local": {
"type": "tel",
"target": "+14155551234",
"target_name": "John Smith",
"name": "Main Office",
"detail": "Primary contact number"
},
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
],
"next_page_token": "2026-01-15T10:30:00.123000Z"
}