vaultix_get_refund
Retrieve a specific refund by its ID to view details and status within the Vaultix payment system.
Instructions
Retrieve a refund by ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Refund ID (re_...) |
Implementation Reference
- src/tools/index.ts:488-489 (handler)Executes the tool logic by calling the VaultixClient to GET /refunds/{id} with the provided refund ID.case 'vaultix_get_refund': return client.get(`/refunds/${args.id}`)
- src/tools/index.ts:147-153 (schema)Defines the input schema for the vaultix_get_refund tool, requiring a refund ID string.inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Refund ID (re_...)' }, }, required: ['id'], },
- src/tools/index.ts:144-154 (registration)Registers the vaultix_get_refund tool in the exported tools array for MCP, including name, description, and schema.{ name: 'vaultix_get_refund', description: 'Retrieve a refund by ID', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Refund ID (re_...)' }, }, required: ['id'], }, },