list_mailbox_webhook_deliveries
Retrieve webhook delivery records for a project mailbox, filter by status to inspect pending, in-flight, delivered, or permanently failed events in the dead-letter queue.
Instructions
List durable webhook delivery rows for the project's mailbox. Webhook delivery is at-least-once with bounded retries + backoff; failures land in 'failed_permanent' (the dead-letter queue). Filter by status to inspect what was lost. Consumers must dedupe on the envelope idempotency_key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Pagination cursor (delivery id from a prior page) | |
| limit | No | Max rows to return (server caps at 200) | |
| status | No | Filter by delivery status. 'failed_permanent' is the dead-letter queue (events that exhausted retries or failed permanently). | |
| mailbox | No | Target mailbox by slug or id; omit only when the project has exactly one mailbox. | |
| project_id | Yes | The project ID |