Webhooks
List Webhook Deliveries
Audit log of delivery attempts for an endpoint
GET
Path Parameters
Endpoint ID (
whk_*).Query Parameters
Page size (1—100).
Opaque cursor.
ISO 8601 timestamp. Only deliveries with
created_at >= since are
returned. Useful for incremental polling — set
since = last_seen_created_at and walk pages until exhausted. Composes
cleanly with cursor so pagination stays stable across the filtered
window.Retention
Delivery audit rows are retained for 30 days (daily-partitioned; older partitions are dropped by the partition-maintenance cron). Queries forsince values older than 30 days return an empty list rather than an
error — fall back to the alert audit log
(GET /v1/alerts) when you need
older history.
Response
Always
"list".Array of
WebhookDelivery rows.Whether more pages exist.
Cursor envelope.
Request identifier.
Errors
- 400 —
sinceis not a valid ISO 8601 timestamp. - 404 — endpoint does not exist or belongs to another org.