{ "opencollection": "1.0.0", "info": { "name": "API Reference Accounts Transactions API", "version": "1.0.0" }, "items": [ { "info": { "name": "Transactions", "type": "folder" }, "items": [ { "info": { "name": "List Transactions", "type": "http" }, "http": { "method": "GET", "url": "https://api.modernfi.com/digital-banking/v1/accounts/:account_id/transactions", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "account_id", "value": "", "type": "path" }, { "name": "id_type", "value": "", "type": "query", "description": "Type of the account id. Must be 'institution' or 'None'." }, { "name": "start_date", "value": "", "type": "query" }, { "name": "end_date", "value": "", "type": "query" }, { "name": "start_datetime", "value": "", "type": "query" }, { "name": "end_datetime", "value": "", "type": "query" }, { "name": "transaction_type", "value": "", "type": "query" }, { "name": "transaction_status", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query" }, { "name": "page_size", "value": "", "type": "query" }, { "name": "timezone", "value": "", "type": "query" } ] }, "docs": "Retrieves all transactions for the specified account with optional filtering.\n\nFilter options:\n- Date-based filtering: Use start_date, end_date, and timezone together\n- Datetime-based filtering: Use start_datetime and end_datetime (timezone-aware, e.g., 2026-02-17T00:00:00Z)\n- Cannot mix date and datetime filters\n- Filter by transaction_type (CREDIT/DEBIT) and transaction_status (PENDING/POSTED)" }, { "info": { "name": "Create Transaction", "type": "http" }, "http": { "method": "POST", "url": "https://api.modernfi.com/digital-banking/v1/accounts/:account_id/transactions", "headers": [ { "name": "Authorization", "value": "" }, { "name": "idempotency-key", "value": "" } ], "params": [ { "name": "account_id", "value": "", "type": "path" }, { "name": "id_type", "value": "", "type": "query", "description": "Type of the account id. Must be 'institution' or 'None'." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create Transaction" }, { "info": { "name": "Get Transaction", "type": "http" }, "http": { "method": "GET", "url": "https://api.modernfi.com/digital-banking/v1/accounts/:account_id/transactions/:transaction_id", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "account_id", "value": "", "type": "path" }, { "name": "transaction_id", "value": "", "type": "path" } ] }, "docs": "Get Transaction" }, { "info": { "name": "Update Transaction", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.modernfi.com/digital-banking/v1/accounts/:account_id/transactions/:transaction_id", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "account_id", "value": "", "type": "path" }, { "name": "transaction_id", "value": "", "type": "path" }, { "name": "id_type", "value": "", "type": "query", "description": "Type of the account id. Must be 'institution' or 'None'." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update Transaction" } ] } ], "bundled": true }