For the complete documentation index, see llms-docs.txt or the site index llms.txt. Full docs corpus: llms-full-docs.txt. Prefer the markdown version of this page at /docs/api/webhook/delete-api-webhook-v1by-id.md. Product capabilities: skill.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

Delete webhook

DELETE
/api/webhook/v1/:id
1import { Reloop } from "reloop-email";
2
3const reloop = new Reloop({ apiKey: "rl_123456789" });
4
5const { webhook, webhookError } = await reloop.webhook.delete("wh_123456789");
6if (webhookError) throw webhookError;
1{
2 "id": "wh_123456789",
3 "message": "Webhook deleted successfully"
4}

Path Parameters

idstringRequired

Webhook ID

  • Minimum length: 1

Was this page helpful?