Parameters
JSON body
Request body
application/jsonidstringRequiredContact external ID.
namestringRequiredDisplay name for the API key.
workspacestringRequiredWorkspace code to associate with the key.
Generates a new API key for a contact, bound to a specific workspace.
JSON body
idstringRequiredContact external ID.
namestringRequiredDisplay name for the API key.
workspacestringRequiredWorkspace code to associate with the key.
1 status code documented
successbooleanRequiredtrueapiKeystringRequired{
"success": true,
"apiKey": "example_apiKey"
}POST /bff/contact/generate-api-key
curl -X POST "https://api.bizkithub.com/bff/contact/generate-api-key" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id": "example_id",
"name": "example_name",
"workspace": "example_workspace"
}'All BizKitHub public API endpoints require authentication via API key.