DocsAPI ReferenceTransaction/bff/transaction/import-gpc
postTransactionAdmin BFF

/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

2 total
Body · 2
bankAccountExternalIdstringRequired

External ID of the destination bank account.

contentstringRequired

Raw GPC/ABO statement file content (one line per record).

Request

POST /bff/transaction/import-gpc

post
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.

Get API Key