/bff/branch/inkaso-entries
Returns one DataGrid page of pre-pro-rated real-money receipts that compose the "Inkaso" headline on the Finance tab. The same CTE drives both — by construction, SUM(allocatedAmount) over the filtered set equals the Inkaso cell on Finance for the same branchSlug + filterMonth to the cent.
Parameters
8 query
branchSlugstringRequiredBranch slug.
pagestring | numberPage number (1-based).
limitstring | numberItems per page.
orderBystringSort directive in field:direction form. Supported fields: receiptDate, allocatedAmount, signedAmount, grossAmount, branchShare, source, direction, status, orderNumber.
monthCountstringWindow size in months (default 24, clamped to [1, 60]). Identical semantics to /monthly-breakdown.
filterMonthstringRestrict to a single calendar month, expressed as YYYY-MM. Receipts are bucketed by receipt_date (when the money moved), the SAME dimension the Inkaso column on Finance uses, so totalAllocated here equals the Inkaso cell for that month exactly. Malformed values are ignored.
filterSourcestring | stringRestrict to one canonical receipt source.
filterDirectionstring | stringRestrict to incoming or outgoing (refund) receipts.
Request
GET /bff/branch/inkaso-entries
curl -X GET "https://api.bizkithub.com/bff/branch/inkaso-entries?branchSlug=gymroom-vinohrady&orderBy=receiptDate%3Adesc&monthCount=24&filterMonth=2026-06" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"items": [
{
"id": "example_id",
"sourceId": 0,
"receiptDate": "example_receiptDate",
"status": "example_status",
"grossAmount": 0,
"signedAmount": 0,
"branchShare": 0,
"allocatedAmount": 0,
"order": {
"orderNumber": "example_orderNumber",
"hash": "example_hash"
},
"customer": {
"contactId": "example_contactId",
"firstName": "example_firstName",
"lastName": "example_lastName",
"companyName": "example_companyName"
},
"gateway": {
"providerName": "example_providerName",
"instanceCode": "example_instanceCode"
},
"bank": {
"bankExternalId": "example_bankExternalId",
"accountName": "example_accountName",
"counterpartyAccount": "example_counterpartyAccount",
"counterpartyName": "example_counterpartyName",
"message": "example_message",
"variableSymbol": "example_variableSymbol"
}
}
],
"itemCount": 0,
"totalAllocated": 0,
"incomingCount": 0,
"outgoingCount": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.