vaultix_get_transactions_summary
Retrieve a summary of payment transactions for a specified period to analyze revenue and activity trends.
Instructions
Get transaction summary for a period
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Period for summary (default: 30d) |
Implementation Reference
- src/tools/index.ts:556-558 (handler)Handler implementation for the vaultix_get_transactions_summary tool. It retrieves the transaction summary from the Vaultix API endpoint '/transactions/summary' with the specified period or defaults to '30d'.case 'vaultix_get_transactions_summary': return client.get('/transactions/summary', { period: args.period || '30d' })
- src/tools/index.ts:303-312 (registration)Tool registration in the tools array, including name, description, and input schema definition.{ name: 'vaultix_get_transactions_summary', description: 'Get transaction summary for a period', inputSchema: { type: 'object', properties: { period: { type: 'string', enum: ['24h', '7d', '30d', '90d'], description: 'Period for summary (default: 30d)' }, }, }, },
- src/tools/index.ts:306-311 (schema)Input schema for the vaultix_get_transactions_summary tool, defining the 'period' parameter.inputSchema: { type: 'object', properties: { period: { type: 'string', enum: ['24h', '7d', '30d', '90d'], description: 'Period for summary (default: 30d)' }, }, },