DocsAPI ReferenceTransaction/bff/transaction/list
getTransactionAdmin BFF

/bff/transaction/list

Returns a paginated list of bank transactions. Supports filtering by order and bank account. Includes matched order info and transaction category when available.

TransactiongetBffTransactionList

Parameters

4 query

4 total
Query · 4
pagestring

Page number (1-based) for pagination.

limitstring

Maximum items per page (1–500, default 50).

orderHashstring

Filter transactions linked to a specific order.

filterAccountstring

Filter by bank account external ID.

Request

GET /bff/transaction/list

get
curl -X GET "https://api.bizkithub.com/bff/transaction/list?page=1&limit=50&orderHash=abc123&filterAccount=2000123456" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

Paginated list of bank transactions.

{
  "items": [
    {
      "id": "example_id",
      "price": {
        "priceWithoutVat": 0,
        "priceWithVat": 0,
        "vat": 0,
        "currency": "example_currency",
        "currencyLocale": "example_currencyLocale"
      },
      "toAccount": "example_toAccount",
      "toAccountName": "example_toAccountName",
      "toBankCode": 0,
      "toBankName": "example_toBankName",
      "constantSymbol": 0,
      "variableSymbol": 0,
      "specificSymbol": 0,
      "userNotice": "example_userNotice",
      "toMessage": "example_toMessage",
      "type": "example_type",
      "sender": "example_sender",
      "message": "example_message",
      "comment": "example_comment",
      "bic": "example_bic",
      "idTransaction": 0,
      "orderHash": "example_orderHash",
      "orderNumber": "example_orderNumber",
      "orderGroup": "example_orderGroup",
      "typeCode": "example_typeCode",
      "typeLabel": "example_typeLabel",
      "typeColor": "example_typeColor"
    }
  ],
  "itemCount": 0
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key