/api/v1/address/update
API endpoint documentation
post
Tags:address
Operation ID:
postApiV1AddressUpdate
Query Parameters
Body
identityId
stringLogged user identity (from your frontend cookies).
Example: "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg"
id
stringtype
stringfirstName
stringlastName
stringcompanyName
stringstreetAddress
stringpostalCode
stringcity
stringcityPart
stringstateRegion
stringcountry
stringcompanyRegistrationNumber
stringtaxIdentificationNumber
stringnotice
stringResponses
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