Parameters
1 query
Query parameters
· 1idstringRequiredExternal address identifier.
addr_abc1231 query
idstringRequiredExternal address identifier.
addr_abc1231 status code documented
idstringRequiredUnique external address identifier.
addr_abc123typestringOptionalAddress type: accounting, billing, deliveryGoods or deliveryInvoice.
billingfirstNamestringOptionalFirst name.
JanlastNamestringOptionalLast name.
NovákcompanyNamestringOptionalCompany name.
Acme s.r.o.companyRegistrationNumberstringOptionalCompany registration number (IČO).
05103118taxIdentificationNumberstringOptionalTax identification number (DIČ).
CZ9609040727streetAddressstringOptionalStreet and house number.
Vodičkova 36citystringOptionalCity name.
PrahacityPartstringOptionalCity part or district.
Nové MěstostateRegionstringOptionalState or region.
Středočeský krajpostalCodestringOptionalPostal / ZIP code.
11000countrystringOptionalISO 3166-1 alpha-2 country code.
CZnoticestringOptionalInternal note about the address.
frozenAtstringOptionalISO timestamp when this address was frozen into an immutable snapshot referenced by an order/invoice. When present, admin UI must hide the edit affordance and render a "Read-only snapshot" badge — the DB trigger rejects any mutation attempt anyway.
{
"id": "addr_abc123",
"type": "billing",
"firstName": "Jan",
"lastName": "Novák",
"companyName": "Acme s.r.o.",
"companyRegistrationNumber": "05103118",
"taxIdentificationNumber": "CZ9609040727",
"streetAddress": "Vodičkova 36",
"city": "Praha",
"cityPart": "Nové Město",
"stateRegion": "Středočeský kraj",
"postalCode": "11000",
"country": "CZ",
"notice": "example_notice",
"frozenAt": "example_frozenAt"
}GET /bff/address/detail
curl -X GET "https://api.bizkithub.com/bff/address/detail?id=addr_abc123" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.