v1

latestOpenAPI 3.0.3Proprietary2026-07-244065126.5 KB
Webhooks

List Webhook Delivery History

Returns delivery history in reverse chronological order. Each entry includes the timestamp, event type, company ID, response status, response body (truncated to 1000 characters), test flag, and round-trip duration in milliseconds. Supports standard DRF limit/offset pagination (default page size: 500, max: 500). Optionally filter by webhook_id and/or is_test. Only deliveries for webhooks owned by the authenticated user are returned.

get/api/v2/webhooks/deliveries

Query parameters

is_testboolean

Filter by test (true) or production (false) deliveries

limitinteger

Maximum number of deliveries to return (default 500, max 500)

offsetinteger

Number of deliveries to skip for pagination

webhook_idinteger

Filter deliveries to a specific webhook (optional)

Response

countinteger required
nextstring uri nullable
previousstring uri nullable

Example response

{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}