/api/v1/customer/update-profile
API endpoint documentation
post
Tags:customer
Operation ID:
postApiV1CustomerUpdate-profile
Query Parameters
Body
email
stringExample: "jan@barasek.com"
name
stringExample: "Jan Barášek"
firstName
stringExample: "Jan"
lastName
stringExample: "Barášek"
phone
stringExample: "+420 777123456"
companyName
stringExample: "BRJ"
companyRegistrationNumber
stringExample: "05103118"
taxIdentificationNumber
stringExample: "CZ9609040727"
streetAddress
stringExample: "R. Novotného 1505"
city
stringExample: "Kladno"
cityPart
stringExample: "Kročehlavy"
stateRegion
stringExample: "Středočeský kraj"
postalCode
stringExample: "272 01"
country
stringExample: "Česká republika"
newsletter
booleanprimaryLocale
stringExample: "cs"
groups
arraycustomerRealIp
stringExample: "1.1.1.1"
referralId
stringExample: "1cGIHvFoQDGLAbcA"
Responses
200
No description
Base URL:
https://bizkithub.com
Example Request
fetch('https://bizkithub.com/api/v1/customer/update-profile?apiKey=YOUR_API_KEY', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"email": "jan@barasek.com",
"name": "Jan Barášek",
"firstName": "Jan",
"lastName": "Barášek",
"phone": "+420 777123456",
"companyName": "BRJ",
"companyRegistrationNumber": "05103118",
"taxIdentificationNumber": "CZ9609040727",
"streetAddress": "R. Novotného 1505",
"city": "Kladno",
"cityPart": "Kročehlavy",
"stateRegion": "Středočeský kraj",
"postalCode": "272 01",
"country": "Česká republika",
"newsletter": false,
"primaryLocale": "cs",
"groups": [],
"customerRealIp": "1.1.1.1",
"referralId": "1cGIHvFoQDGLAbcA"
})
})
Example Response
HTTP 200Success Response
{
"success": false
}
🔑 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: August 6, 2025