v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Banking > Transaction

Reads all Transactions

Reads all Transactions

get/api/2026-07-01/resources/banking/transactions

Query parameters

ids[]string[]

An array of transaction IDs to filter by.

An array of transaction IDs to filter by.

[
  "135"
]
bank_account_ids[]string[]

An array of Factorial Banking Bank Account IDs to filter by.

An array of Factorial Banking Bank Account IDs to filter by.

[
  "357"
]
card_payment_ids[]string[]

An array of Factorial Card Payment IDs to filter by.

An array of Factorial Card Payment IDs to filter by.

[
  "135"
]
fromstring

Date from which the transactions should be fetched.

Example:2021-01-01

Date from which the transactions should be fetched.

tostring

Date until which the transactions should be fetched.

Example:2025-01-01

Date until which the transactions should be fetched.

updated_fromstring

Filter transactions updated from a specific date.

Example:2021-01-01

Filter transactions updated from a specific date.

Response

OK

Example response

{
  "data": [
    {
      "id": "135",
      "bank_account_id": "357",
      "amount_cents": 1000,
      "balance_after_cents": 2000,
      "currency": "USD",
      "type": "topup",
      "description": "Topup from external account",
      "booking_date": "2021-01-01T00:00:00.000Z",
      "value_date": "2021-01-01T00:00:00.000Z",
      "card_payment_id": "135",
      "updated_at": "2021-01-01T00:00:00.000Z"
    }
  ]
}