vaultix_get_transaction
Retrieve transaction details by ID to view payment information, verify status, and access records for charges, refunds, or payouts.
Instructions
Retrieve a transaction by ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Transaction ID |
Implementation Reference
- src/tools/index.ts:546-547 (handler)Handler implementation for the 'vaultix_get_transaction' tool. It retrieves a transaction by ID via a GET request to `/transactions/${args.id}` using the VaultixClient.case 'vaultix_get_transaction': return client.get(`/transactions/${args.id}`)
- src/tools/index.ts:283-289 (schema)Input schema definition for the 'vaultix_get_transaction' tool, specifying the required 'id' parameter as a string.inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Transaction ID' }, }, required: ['id'], },
- src/tools/index.ts:280-290 (registration)Registration of the 'vaultix_get_transaction' tool in the exported tools array, including name, description, and input schema.{ name: 'vaultix_get_transaction', description: 'Retrieve a transaction by ID', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Transaction ID' }, }, required: ['id'], }, },