DocsAPI ReferenceCustomer/api/v1/customer/add-bank-account
postCustomerPublic API v1

/api/v1/customer/add-bank-account

Links a bank account number to a customer identified by cuRefNo.

customerpostApiV1CustomerAdd-bank-account

Parameters

1 query · 3 body

4 total
Query · 1
apiKeystringRequired

Your BizKitHub API key (passed as GET parameter).

Key format: A 32-character string matching: ^(PROD|DEV_|ROOT)[A-Za-z0-9]{28}$
Prefixes: PROD (production key), DEV_ (individual developer), ROOT (system key with no limits). Learn more

Body · 3
cuRefNostringRequired

cuRefNo = customer reference number.

Length: 1616
bankAccountstringRequired
  • Digits-only technical formats (Czech accounts only):
    • 20 digits BBAN: BBBBPPPPPPAAAAAAAAAA (bank 4 + prefix 6 + account 10).
    • 22 digits: CCBBBB... where it represents CZ + check digits + BBAN without the country prefix.
    • Without separators: <account+optional prefix><bank>, e.g. 20027706302010.

Invalid input: If the value contains letters but is not a valid/repairable IBAN, conversion fails and the endpoint returns { success: false }.

currencystring

Currency code. Format: 3-letter uppercase code (e.g. CZK).
Supported values: CZK, EUR, USD.

Request

POST /api/v1/customer/add-bank-account

post
curl -X POST "https://api.bizkithub.com/api/v1/customer/add-bank-account?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "cuRefNo": "1cGIHvFoQDGLAbcA",
  "bankAccount": "CZ5420100000002002770630",
  "currency": "CZK"
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key