GET /v1/admin/webhooks/dlq
Tags: webhooks
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
limit | query | integer | Page size in [1, 200], default 50 | |
cursor | query | string | Opaque RFC3339 cursor from a prior page |
Responses
200 — DLQ rows (failed_terminal); newest first, paginated
JSON
{
"$ref": "#/components/schemas/DlqListResponse"
}400 — INVALID_REQUEST — malformed cursor
403 — FORBIDDEN — platform admin required
Code samples
TypeScript
TypeScript
import { firecase } from "@firecase/sdk";
const result = await firecase.get("/admin/webhooks/dlq");
console.log(result);Python
Python
import firecase
result = firecase.get("/admin/webhooks/dlq")
print(result)curl
Bash
curl -X GET https://api.firecase.ai/v1/admin/webhooks/dlq \
-H "Authorization: Bearer $FIRECASE_API_KEY" \
-H "Content-Type: application/json"