vaultix_cancel_payout
Cancel a pending payout by providing the payout ID to stop the transaction from processing through the Vaultix Payment API.
Instructions
Cancel a pending payout
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Payout ID to cancel |
Implementation Reference
- src/tools/index.ts:610-611 (handler)Handler logic for 'vaultix_cancel_payout' tool: Posts to `/payouts/${args.id}/cancel` using the VaultixClient to cancel a pending payout.case 'vaultix_cancel_payout': return client.post(`/payouts/${args.id}/cancel`)
- src/tools/index.ts:409-414 (schema)Input schema definition for 'vaultix_cancel_payout' tool, requiring a payout ID.inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Payout ID to cancel' }, }, required: ['id'],
- src/tools/index.ts:406-416 (registration)Registration of the 'vaultix_cancel_payout' tool in the exported tools array.{ name: 'vaultix_cancel_payout', description: 'Cancel a pending payout', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Payout ID to cancel' }, }, required: ['id'], }, },