v1
latestOpenAPI 3.0.32026-07-264469137.7 KBWebhooks
List events for an endpoint
List the events delivered (or attempted) to a specific endpoint. Requires the webhooks:read scope.
get/v1/webhooks/endpoints/{endpoint_id}/events
Path parameters
endpoint_idstring required
The webhook endpoint's ID.
Query parameters
limitinteger
Maximum results to return (1–100, default 50).
offsetinteger
Number of results to skip.
Response
Events for the endpoint.
Example response
{
"items": [
{
"event_id": "evt_1a2b3c4d5e",
"event_type": "collection.succeeded",
"entity_id": "pay_1a2b3c4d5e",
"attempts": 1,
"success": 1,
"last_attempt_status": "delivered",
"last_attempt_http_status": 200,
"last_attempt_at": "2026-04-27T12:00:01Z"
}
],
"total": 145,
"limit": 50
}