/api/v1/address/update

API endpoint documentation

post
Tags:address
Operation ID: postApiV1AddressUpdate
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
identityIdstring
required

Logged user identity (from your frontend cookies).

Example: "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg"
idstring
required
typestring
optional
firstNamestring
optional
lastNamestring
optional
companyNamestring
optional
streetAddressstring
optional
postalCodestring
optional
citystring
optional
cityPartstring
optional
stateRegionstring
optional
countrystring
optional
companyRegistrationNumberstring
optional
taxIdentificationNumberstring
optional
noticestring
optional
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/address/update?apiKey=YOUR_API_KEY', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
        "identityId": "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg",
        "id": "example_id",
        "type": "example_type",
        "firstName": "example_firstName",
        "lastName": "example_lastName",
        "companyName": "example_companyName",
        "streetAddress": "example_streetAddress",
        "postalCode": "example_postalCode",
        "city": "example_city",
        "cityPart": "example_cityPart",
        "stateRegion": "example_stateRegion",
        "country": "example_country",
        "companyRegistrationNumber": "example_companyRegistrationNumber",
        "taxIdentificationNumber": "example_taxIdentificationNumber",
        "notice": "example_notice"
    })
})

Example Response

HTTP 200Success Response
{
  "success": true,
  "data": {
    "message": "Example response"
  }
}

🔑 API Key Required

All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.

Back to API Documentation
Last updated: September 21, 2025