Endpoint
List webhook deliveries
GET/api/public/v1/webhook-deliveriesread
Inspect recent webhook deliveries (event, status, attempts, response status, error) so a failing integration is debuggable without guessing.
Request
curl "https://sayintel.com/api/public/v1/webhook-deliveries" \ -H "Authorization: Bearer $SAYINTEL_TOKEN"
Try it out
Try it outGET/api/public/v1/webhook-deliveriesread
Sent as a bearer token to this site only, and kept in this tab's session storage. It is never written to disk or sent anywhere else.
Paste an API key to run.
Query parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| webhook_id | query | string | no | — |
| status | query | stringpending | delivered | failed | cancelled | no | — |
| limit | query | number | no | — |
| cursor | query | string | no | Opaque cursor from a previous call's next_cursor. Omit for the first page. |
Response
{
"ok": true,
"tool": "list_webhook_deliveries",
"kind": "read",
"data": { ... },
"error": null
}Notes
- Scope required: read. How scopes work.
- Paginated. Pass the returned next_cursor while has_more is true.
- Same capability over MCP as the tool list_webhook_deliveries. MCP setup.