webhooks.delete
Remove a webhook endpoint from Ryft MCP to stop receiving automated notifications about payment events and financial data updates.
Instructions
Delete a Ryft webhook endpoint.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/webhooks.ts:48-53 (handler)The handler for 'webhooks.delete' which calls the Ryft HTTP client to delete a webhook by ID.
registerTool( 'webhooks.delete', 'Delete a Ryft webhook endpoint.', { id: z.string().min(1) }, async ({ id }) => client.delete(`/webhooks/${id}`), );