List webhook deliveries
/webhooks/{webhookId}/deliveriesRecent delivery attempts for a webhook. Also available at /webhooks/{webhookId}/logs.
Path parameters
webhookIdRequiredstringUnique identifier of the webhook subscription, prefixed with wh_. Returned when you create a webhook or by the List webhooks endpoint.
Headers
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Query parameters
limitoptionalintegerMaximum number of items to return per page. Must be between 1 and 200; defaults to 50. Combine with cursor to paginate.
cursoroptionalstringOpaque pagination cursor. Pass the next_cursor value from a previous response to fetch the next page; omit it on the first request.
Returns
dataoptionalWebhookDelivery[]
dataoptionalWebhookDelivery[]Array of WebhookDelivery
idoptionalstringDelivery id (wdel_...).
webhook_idoptionalstringevent_idoptionalstringevent_typeoptionalstringstatusoptionalstringattempt_countoptionalintegerresponse_statusoptionalinteger | nulllast_attempt_atoptionalinteger | nullnext_attempt_atoptionalinteger | nullcreated_atoptionalintegerhas_moreoptionalbooleannext_cursoroptionalstring | nullResponse codes
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X GET https://api.blooio.com/v4/webhooks/wh_a1b2c3d4/deliveries?limit=50&cursor=string \ -H "Authorization: Bearer bl_live_..."{ "data": [ { "id": "obj_a1b2c3d4", "webhook_id": "wh_a1b2c3d4", "event_id": "evt_a1b2c3d4", "event_type": "string", "status": "active", "attempt_count": 3, "response_status": 0, "last_attempt_at": 0, "next_attempt_at": 0, "created_at": 0 } ], "has_more": true, "next_cursor": "string"}