GET
/
api
/
accounts
/
transactions
[
  {
    "date": "2024-01-01",
    "formattedDate": "01 Jan 2024",
    "transactionType": "INVOICE",
    "transactionId": 123,
    "transactionTypeFormatted": "Invoice",
    "credit": 100,
    "debit": 50,
    "formattedCredit": "100.00 USD",
    "formattedDebit": "50.00 USD",
    "fcCredit": 120,
    "fcDebit": 60,
    "formattedFcCredit": "120.00 EUR",
    "formattedFcDebit": "60.00 EUR"
  }
]

Headers

Authorization
string
required

Value must be 'Bearer <token>' where <token> is an API key prefixed with 'bc_' or a JWT token.

Example:

"Bearer bc_1234567890abcdef"

organization-id
string
required

Required if Authorization is a JWT token. The organization ID to operate within.

Query Parameters

accountId
number

ID of the account to fetch transactions for

limit
number

Maximum number of transactions to return

Response

200 - application/json

The account transactions have been successfully retrieved.

The response is of type object[].