Parameters
JSON body
Request body
application/jsonorganisationNamestringRequiredProposed organisation name to check availability.
Example
Acme CorpChecks if the proposed organisation name is available and generates a unique URL slug. Use this endpoint before creating an organisation to validate the name.
JSON body
organisationNamestringRequiredProposed organisation name to check availability.
Acme Corp1 status code documented
availablebooleanRequiredWhether the organisation name is available for use.
truenamestringRequiredThe organisation name that was checked.
Acme CorpslugstringRequiredGenerated URL-friendly slug for the organisation. Guaranteed to be unique.
acme-corp{
"available": true,
"name": "Acme Corp",
"slug": "acme-corp"
}POST /bff/cms/create-organisation-check
curl -X POST "https://api.bizkithub.com/bff/cms/create-organisation-check" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"organisationName": "Acme Corp"
}'All BizKitHub public API endpoints require authentication via API key.