Moonborn — API · admin
Replay a dead-lettered webhook delivery (creates a fresh pending delivery)
Clones a dead-lettered delivery as a brand-new pending entry; the next webhook poll cycle will dispatch it via the standard retry policy. Does not unblock the original DLQ entry — it stays for audit.
POST/v1/admin/webhooks/dead-letter/{id}/replayscope · Bearer (API key or session JWT)
Path parameters
| Field | Type | Description |
|---|---|---|
| idreq | string |
Responses
200Replay scheduled
403Forbidden — platform admin only
Body
| Field | Type | Description |
|---|---|---|
| errorreq | object | |
| error.codereq | string | |
| error.messagereq | string |
404Source delivery not found
Body
| Field | Type | Description |
|---|---|---|
| errorreq | object | |
| error.codereq | string | |
| error.messagereq | string |
Examples
cURL
curl -X POST https://api.moonborn.co/v1/admin/webhooks/dead-letter/<id>/replay \ -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.adminReplayDeadLetteredWebhook({
id: '<id>',
});Python
import os
from moonborn import Moonborn
client = Moonborn(api_key=os.environ["MOONBORN_API_KEY"])
result = client.admin.admin_replay_dead_lettered_webhook(
id="<id>",
)