/bff/bank-account/
Single source of truth for organisation bank accounts. Returns every account ever attached (active + soft-deleted), regardless of source (manual / MFCR / Fio API / GPC). Each row carries identity metadata, optional connector status, optional Fio-style live metadata (balance, sync period), and transaction analytics (counts, last 30d income/expense, match rate, last transaction date). Consumers (Settings page, Bank Transactions page) filter and sort client-side.
Bank accountgetBffBank-account
No parameters
This endpoint takes no path, query, header or body parameters.
Request
GET /bff/bank-account/
curl -X GET "https://api.bizkithub.com/bff/bank-account/" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"items": [
{
"externalId": "example_externalId",
"source": "manual",
"isActive": false,
"isPrimary": false,
"isPubliclyListed": false,
"fraudHits": 0,
"insertedDate": "example_insertedDate",
"hasConnector": false,
"lastSyncSuccess": false,
"transactionCount": 0,
"transactionsThisMonth": 0,
"totalIncome": 0,
"totalExpense": 0,
"income30d": 0,
"expense30d": 0,
"matchedTransactions": 0,
"unmatchedTransactions": 0
}
]
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.