list_mailbox_webhook_deliveries
List webhook delivery rows for a project's mailbox, filterable by status (pending, in_flight, delivered, failed_permanent) to inspect retries and identify permanently failed events. Supports pagination and mailbox selection.
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 |
|---|---|---|---|
| project_id | Yes | The project ID | |
| status | No | Filter by delivery status. 'failed_permanent' is the dead-letter queue (events that exhausted retries or failed permanently). | |
| limit | No | Max rows to return (server caps at 200) | |
| after | No | Pagination cursor (delivery id from a prior page) | |
| mailbox | No | Target mailbox by slug or id; omit only when the project has exactly one mailbox. |