BizKitHub
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

JSON body

Request body

application/json
bankAccountExternalIdstringRequired

External ID of the destination bank account.

Example2000123456
contentstringRequired

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

Response schema

1 status code documented

200Success
statementNumberstringRequired

Statement number from the 074 header.

statementDateDate | string | string | numberRequired

Statement date from the 074 header.

One of 4:
Variant 1
Date

Statement date from the 074 header.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
parsednumberRequired

Number of 075 transaction records found in the file.

insertednumberRequired

Number of new transactions actually inserted.

skippedDuplicatesnumberRequired

Number of transactions already present in the database.

Response example

application/json
{
  "statementNumber": "example_statementNumber",
  "parsed": 0,
  "inserted": 0,
  "skippedDuplicates": 0
}

Request example

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"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key