get_movement_list
Retrieve account movements and transactions with details on amounts, types, statuses, and balances, with pagination support via limit and offset.
Instructions
Get list of account movements/transactions (requires ALLOW_GET_MOVEMENT_LIST scope).
š Response Structure:
count: Total number of movements availablerows: Array of movement objects with the following key fields:id: Unique movement identifieramount: Transaction amount (+ for credits, - for debits)currency: Currency code (USD, EUR, etc.)movementTypeId: Type classification (1=Transfer, 2=Card Credit, 3=Refund, 4=Card Refund, 5=Top Up, 6=Exchange, 7=ATM, 8=Fee, 9=Adjustment)state: Transaction status (2=Charged, 3=Paid, 4=Error, 5=Pending In, 6=Cancelled)bankOrderCode: Transaction identifier (TX prefix for regular, DEV for refunds)balanceBefore/balanceAfter: Account balance before/after transactionreference: User-defined referenceconceptTransfer: Transaction descriptioncompletedAt/createdAt: Transaction timestampsfee: Transaction fee (if applicable)accountId: Id of the account that this movement belongsoriginalCurrencyAmount: Amount in original currencydestinationAmount: Amount in destination currencydestinationCurrency: Destination currency codeconversionRate: Applied rate for this movementpaymentcard: uuid of asociated paymentcard to this movement or null otherwise š” Tip: Use the 'tropipay_movements_schema' prompt for detailed field explanations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of movements to retrieve (default: 10) | |
| offset | No | Number of movements to skip (default: 0) |