Moonborn — API · admin
List dead-lettered webhook deliveries for an org
Returns dead-lettered (retry-budget exhausted) webhook deliveries scoped to an org, most-recent first, cursor-paginated on updated_at. Use the cursor for pagination and the totalCount field for DLQ depth indicators in admin UI.
GET/v1/admin/webhooks/dead-letterscope · Bearer (API key or session JWT)
Query parameters
| Field | Type | Description |
|---|---|---|
| orgIdreq | string | |
| endpointId | string | |
| limit | string | |
| beforeUpdatedAtMs | string |
Responses
200OK
403Forbidden — platform admin only
Body
| Field | Type | Description |
|---|---|---|
| errorreq | object | |
| error.codereq | string | |
| error.messagereq | string |
Examples
cURL
curl -X GET https://api.moonborn.co/v1/admin/webhooks/dead-letter \ -H "Authorization: Bearer $MOONBORN_API_KEY"
TypeScript
import Moonborn from '@moonborn/sdk';
const client = new Moonborn({ apiKey: process.env.MOONBORN_API_KEY });
const result = await client.admin.adminListDeadLetteredWebhooks();Python
import os from moonborn import Moonborn client = Moonborn(api_key=os.environ["MOONBORN_API_KEY"]) result = client.admin.admin_list_dead_lettered_webhooks()