flowcheck_delete_webhook
Remove a registered webhook endpoint from the FlowCheck Financial API MCP Server to stop receiving automated notifications.
Instructions
Remove a registered webhook endpoint.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Webhook endpoint ID |
Implementation Reference
- src/tools/webhooks.ts:57-70 (handler)The registration and handler implementation for the flowcheck_delete_webhook tool.
server.registerTool( "flowcheck_delete_webhook", { title: "Delete Webhook", description: "Remove a registered webhook endpoint.", inputSchema: z.object({ id: z.string().describe("Webhook endpoint ID"), }), }, async ({ id }) => { const result = await client.request("DELETE", `/webhooks/${id}`); return { content: [{ type: "text" as const, text: result }] }; }, );