/api/v1/customer/create
API endpoint documentation
post
Tags:customer
Operation ID:
postApiV1CustomerCreateQuery Parameters
Body
emailstringExample: "jan@barasek.com"companyNamestringExample: "BRJ"companyRegistrationNumberstringExample: "05103118"taxIdentificationNumberstringExample: "CZ9609040727"customerRealIpstringExample: "1.1.1.1"Responses
200
No description
Base URL:
https://bizkithub.comExample Request
fetch('https://bizkithub.com/api/v1/customer/create?apiKey=YOUR_API_KEY', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"email": "jan@barasek.com",
"companyName": "BRJ",
"companyRegistrationNumber": "05103118",
"taxIdentificationNumber": "CZ9609040727",
"customerRealIp": "1.1.1.1"
})
})Example Response
HTTP 200Success Response
{
"success": false,
"newAccount": true,
"cuRefNo": "1cGIHvFoQDGLAbcA",
"creditBalance": 123,
"email": "jan@barasek.com",
"phone": "+420 777123456",
"firstName": "Jan",
"lastName": "Barášek",
"companyName": "BRJ",
"premium": true,
"ban": false,
"groups": [],
"meta": null,
"referral": {
"code": "1cGIHvFoQDGLAbcA",
"email": "jan@barasek.com",
"firstName": "Jan",
"lastName": "Barášek"
}
}🔑 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: November 14, 2025