/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
Query · 4
pagestringPage number (1-based) for pagination.
limitstringMaximum items per page (1–500, default 50).
orderHashstringFilter transactions linked to a specific order.
filterAccountstringFilter by bank account external ID.
Request
GET /bff/transaction/list
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.