Endpoint
Delete webhook
POST/api/public/v1/webhooks/{webhook_id}/deletewrite
Delete a webhook endpoint and its pending deliveries.
Request
curl -X POST "https://sayintel.com/api/public/v1/webhooks/<webhook_id>/delete" \
-H "Authorization: Bearer $SAYINTEL_TOKEN" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{}'Try it out
Try it outPOST/api/public/v1/webhooks/{webhook_id}/deletewrite
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.
Path parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| webhook_id | path | string | yes | — |
Response
{
"ok": true,
"tool": "delete_webhook",
"kind": "write",
"data": { ... },
"error": null
}Notes
- Scope required: write. How scopes work.
- Accepts Idempotency-Key. A retry with the same key replays the first result instead of repeating the work.
- Same capability over MCP as the tool delete_webhook. MCP setup.