Parameters
JSON body
Request body
application/jsonidstringRequiredContact external ID.
namestringRequiredWorkspace display name.
colorstringRequiredWorkspace color (hex code).
Example
#ff0000Creates a new workspace for a contact with the given name and color.
JSON body
idstringRequiredContact external ID.
namestringRequiredWorkspace display name.
colorstringRequiredWorkspace color (hex code).
#ff00001 status code documented
successbooleanRequiredtrue{
"success": true
}POST /bff/contact/add-workspace
curl -X POST "https://api.bizkithub.com/bff/contact/add-workspace" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id": "example_id",
"name": "example_name",
"color": "#ff0000"
}'All BizKitHub public API endpoints require authentication via API key.