vaultix_delete_product
Remove a product from the Vaultix payment system by specifying its unique identifier to manage your catalog effectively.
Instructions
Delete a product
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Product ID to delete |
Implementation Reference
- src/tools/index.ts:241-251 (registration)Registration of the vaultix_delete_product tool in the tools array, including name, description, and input schema definition.{ name: 'vaultix_delete_product', description: 'Delete a product', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Product ID to delete' }, }, required: ['id'], }, },
- src/tools/index.ts:244-249 (schema)Input schema for vaultix_delete_product tool defining the required 'id' parameter.inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Product ID to delete' }, }, required: ['id'],
- src/tools/index.ts:531-532 (handler)Handler logic for vaultix_delete_product: calls client.delete on the products endpoint with the provided product ID.case 'vaultix_delete_product': return client.delete(`/products/${args.id}`)