Iaptic MCP Server

Official

transaction_list

List financial transactions from your Iaptic account.

  • Returns a paginated list of transactions
  • Use limit and offset for pagination (default: 100 per page)
  • Filter by date range using startdate and enddate (ISO format)
  • Filter by purchaseId to see transactions for a specific purchase
  • Results include transaction status, amount, currency, and payment details
  • Results are ordered by transaction date (newest first)
  • Important: Use date filtering to avoid retrieving too many records

Input Schema

NameRequiredDescriptionDefault
enddateNoFilter transactions before this date (ISO format, e.g. 2024-12-31)
limitNoMaximum number of transactions to return (default: 100, max: 1000)
offsetNoNumber of transactions to skip for pagination
purchaseIdNoFilter transactions by purchase ID
startdateNoFilter transactions after this date (ISO format, e.g. 2024-01-01)

Input Schema (JSON Schema)

{ "properties": { "enddate": { "description": "Filter transactions before this date (ISO format, e.g. 2024-12-31)", "type": "string" }, "limit": { "description": "Maximum number of transactions to return (default: 100, max: 1000)", "type": "number" }, "offset": { "description": "Number of transactions to skip for pagination", "type": "number" }, "purchaseId": { "description": "Filter transactions by purchase ID", "type": "string" }, "startdate": { "description": "Filter transactions after this date (ISO format, e.g. 2024-01-01)", "type": "string" } }, "type": "object" }