beel_list_webhook_deliveries
Fetch webhook delivery attempts for a subscription, newest first, with optional filters by event type or event ID. Trace single-event retries and responses.
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. Narrow it with event_type, or with event_id
to follow a single event across its attempts.
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. |