List Deliveries
GET
/platform/v1/webhooks/deliveries
const url = 'https://example.com/platform/v1/webhooks/deliveries?mode=kalipto&errors_only=false';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/platform/v1/webhooks/deliveries?mode=kalipto&errors_only=false'List deliveries with cursor pagination + per-mode filtering.
mode=kalipto (default) reads the normalized engine
platform_event_deliveries (account-scoped via the denormalized
developer_account_id column). mode=meta reads the raw inbound
forward queue platform_deliveries (channel-scoped — the account scope
is enforced via platform_channels.developer_account_id ownership).
Returns {mode, data, next_cursor, prev_cursor}.
Cursor pagination via the WF5 build_page keyset helper (newest-first,
O(log n) per page). Filters:
subscription_id— kalipto-mode only (raw deliveries have no sub).channel_id— both modes.status— both modes.event_type— kalipto-mode only.errors_only— both modes (status=‘failed’).
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” mode
Mode
kalipto (default) = normalized platform_event_deliveries; meta = raw platform_deliveries.
string
kalipto (default) = normalized platform_event_deliveries; meta = raw platform_deliveries.
errors_only
Errors Only
boolean
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}