beel_list_webhook_deliveries
Retrieve webhook delivery attempts for a subscription in reverse chronological order, with each response. Filter by event type or event ID to trace retries and diagnose delivery failures.
Instructions
Returns the delivery attempts of this subscription, newest first. Each entry records one attempt with the response it got, so a retried event appears once per attempt.
event_type: narrows the list to a single event type.event_id: follows one event across every attempt made on it, without paging through the whole history.
Endpoint: GET /v1/accounts/{account_id}/webhooks/{webhook_id}/deliveries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number, starting at 1. The response echoes it back as `pagination.current_page`. | |
| limit | No | How many items to return per page. The response echoes it back as `pagination.items_per_page`. | |
| event_id | No | Only deliveries of this event. Use it to follow every attempt on one event without paging through the whole history. | |
| account_id | Yes | Your own account, or an account you provisioned. It — not the credential, and not the `BeeL-Active-Company` header — decides which account the operation acts on. An account you do not reach answers `403`, and so does an account that does not exist, so the existence of somebody else's account is never disclosed. | |
| event_type | No | Only deliveries of this event type. | |
| webhook_id | Yes | Subscription of the account in the path. A subscription of another account answers `404`, the same as one that does not exist: under the account resolved from `{account_id}` it simply is not there. |