Skip to main content
Glama
VautlixDevelopment

Vaultix MCP Server

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
NameRequiredDescriptionDefault
idYesPayout ID to cancel

Implementation Reference

  • 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`)
  • 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'],
  • 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'],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/VautlixDevelopment/mcpVaultix'

If you have feedback or need assistance with the MCP directory API, please join our Discord server