/bff/transaction/import-gpc
Parses a Czech GPC/ABO fixed-width bank statement (074 header + 075 transaction lines) and inserts new transactions into the selected bank account. Idempotent: re-uploading the same statement only adds previously unseen transactions.
TransactionpostBffTransactionImport-gpc
Parameters
2 body
Body · 2
bankAccountExternalIdstringRequiredExternal ID of the destination bank account.
contentstringRequiredRaw GPC/ABO statement file content (one line per record).
Request
POST /bff/transaction/import-gpc
curl -X POST "https://api.bizkithub.com/bff/transaction/import-gpc" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"bankAccountExternalId": "2000123456",
"content": "example_content"
}'Response
JSON payload
{
"statementNumber": "example_statementNumber",
"parsed": 0,
"inserted": 0,
"skippedDuplicates": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.