/api/v1/customer/create-api-key
API endpoint documentation
post
Tags:customer
Operation ID:
postApiV1CustomerCreate-api-key
Query Parameters
Body
identityId
stringLogged user identity (from your frontend cookies).
Example: "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg"
description
stringExample: "User Jan Barasek"
workspaceCode
stringExample: "my-workspace"
customerRealIp
stringExample: "1.1.1.1"
Responses
200
No description
Base URL:
https://bizkithub.com
Example Request
fetch('https://bizkithub.com/api/v1/customer/create-api-key?apiKey=YOUR_API_KEY', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"identityId": "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg",
"description": "User Jan Barasek",
"workspaceCode": "my-workspace",
"customerRealIp": "1.1.1.1"
})
})
Example Response
HTTP 200Success Response
{
"success": false,
"apiKey": "63VQn5OUY2zfcPdz1I8s2rWzI2KyOX0z",
"expirationDate": "2025-01-10T16:19:40.150Z"
}
🔑 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