/bff/address/update
Updates an existing address record. The address ID must be provided in the body.
AddresspostBffAddressUpdate
Parameters
15 body
Body · 15
idstringExternal address ID. Required for update, optional for create.
typestringAddress type: accounting, billing, deliveryGoods or deliveryInvoice.
contactIdstringContact external reference number to link address to.
firstNamestringFirst name.
lastNamestringLast name.
companyNamestringCompany name.
streetAddressstringStreet and house number.
postalCodestringPostal / ZIP code.
citystringCity name.
cityPartstringCity part or district.
stateRegionstringState or region.
countrystringISO 3166-1 alpha-2 country code.
companyRegistrationNumberstringCompany registration number (IČO).
taxIdentificationNumberstringTax identification number (DIČ).
noticestringInternal note about the address.
Request
POST /bff/address/update
curl -X POST "https://api.bizkithub.com/bff/address/update" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id": "addr_abc123",
"type": "billing",
"contactId": "cu_xyz789",
"firstName": "Jan",
"lastName": "Novák",
"companyName": "Acme s.r.o.",
"streetAddress": "Vodičkova 36",
"postalCode": "11000",
"city": "Praha",
"cityPart": "example_cityPart",
"stateRegion": "example_stateRegion",
"country": "CZ",
"companyRegistrationNumber": "05103118",
"taxIdentificationNumber": "CZ9609040727",
"notice": "example_notice"
}'Response
JSON payload
{
"success": true
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.