BizKitHub
DocsAPI ReferenceCms/bff/cms/organisation-create
postCmsAdmin BFF

/bff/cms/organisation-create

Creates a new organisation linked to the current user. The user becomes an admin member of the new organisation. Requires authenticated user.

CMSpostBffCmsOrganisation-create

Parameters

JSON body

Request body

application/json
organisationNamestringRequired

Name of the new organisation. Must be unique.

Length: 1
ExampleAcme Corp
timezonestringRequired

Timezone identifier (e.g., "Europe/Prague", "America/New_York").

ExampleEurope/Prague
descriptionstringOptional

Optional description of the organisation.

ExampleOur main production workspace.
countryIdnumberOptional

Primary HQ country FK (core__country.id, from GET /organisation/available-countries). Drives per-country security posture. If omitted, resolved from the request IP with Czech Republic as ultimate default.

Example158

Response schema

1 status code documented

200SuccessOrganisation created successfully.
successbooleanRequired

Always true on success.

Default: true

Response example

application/json
{
  "success": true
}

Request example

POST /bff/cms/organisation-create

post
curl -X POST "https://api.bizkithub.com/bff/cms/organisation-create" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "organisationName": "Acme Corp",
  "timezone": "Europe/Prague",
  "description": "Our main production workspace.",
  "countryId": 158
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key