Skip to main content
GET
/
api
/
analytics
/
agents
/
{agent_id}
/
events
Get Webhook Events
curl --request GET \
  --url https://api.example.com/api/analytics/agents/{agent_id}/events
[
  {
    "id": 123,
    "agent_id": 123,
    "call_id": "<string>",
    "event_name": "<string>",
    "response_code": 123,
    "latency_ms": 123,
    "attempt_count": 123,
    "error_message": "<string>",
    "created_at": "<string>"
  }
]

Path Parameters

agent_id
integer
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

id
integer
required
agent_id
integer
required
call_id
string
required
event_name
string
required
response_code
integer | null
required
latency_ms
integer | null
required
attempt_count
integer
required
error_message
string | null
required
created_at
string
required