/api/v1/customer/create

API endpoint documentation

post
Tags:customer
Operation ID: postApiV1CustomerCreate
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
emailstring
required
Example: "jan@barasek.com"
companyNamestring
optional
Example: "BRJ"
companyRegistrationNumberstring
optional
Example: "05103118"
taxIdentificationNumberstring
optional
Example: "CZ9609040727"
customerRealIpstring
optional
Example: "1.1.1.1"
Responses
200

No description

Base URL:
https://bizkithub.com

Example 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