Skip to main content
Glama
VautlixDevelopment

Vaultix MCP Server

vaultix_get_payment_link

Retrieve a payment link using its unique ID to access payment details and transaction information for processing.

Instructions

Retrieve a payment link by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPayment Link ID (plink_...)

Implementation Reference

  • Handler implementation for 'vaultix_get_payment_link' tool. It retrieves the payment link details by calling client.get on the '/payment-links/{id}' endpoint.
    case 'vaultix_get_payment_link':
      return client.get(`/payment-links/${args.id}`)
  • Schema definition for 'vaultix_get_payment_link' tool, specifying the input schema that requires a 'id' parameter of type string.
    {
      name: 'vaultix_get_payment_link',
      description: 'Retrieve a payment link by ID',
      inputSchema: {
        type: 'object',
        properties: {
          id: { type: 'string', description: 'Payment Link ID (plink_...)' },
        },
        required: ['id'],
      },
    },
  • The tool 'vaultix_get_payment_link' is registered in the 'tools' export array as a Tool object.
    {
      name: 'vaultix_get_payment_link',
      description: 'Retrieve a payment link by ID',
      inputSchema: {
        type: 'object',
        properties: {
          id: { type: 'string', description: 'Payment Link ID (plink_...)' },
        },
        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