customers.delete
Remove a customer from the Ryft MCP server to manage financial resources and maintain account data.
Instructions
Delete a Ryft customer.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/customers.ts:60-65 (handler)The registration and handler implementation for 'customers.delete'. The handler uses the RyftHttpClient to send a DELETE request to the /customers/:id endpoint.
registerTool( 'customers.delete', 'Delete a Ryft customer.', { id: z.string().min(1) }, async ({ id }) => client.delete(`/customers/${id}`), );