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
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Payment Link ID (plink_...) |
Implementation Reference
- src/tools/index.ts:569-570 (handler)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}`)
- src/tools/index.ts:330-340 (schema)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'], }, },
- src/tools/index.ts:330-340 (registration)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'], }, },