BizKitHub
DocsAPI ReferenceOrganisation/bff/organisation/locales
getOrganisationAdmin BFF

/bff/organisation/locales

Returns the list of locales configured for the current organisation. Each locale includes its code, whether it is the default, and its display position.

OrganisationgetBffOrganisationLocales

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200Success
itemsobject[]Required

Configured locales ordered by position.

Each array item:
localestringRequired

Locale code (e.g. "cs", "en").

Examplecs
isDefaultbooleanRequired

Whether this is the default locale for the organisation.

positionnumberRequired

Display order position (0-based).

Response example

application/json
{
  "items": [
    {
      "locale": "cs",
      "isDefault": false,
      "position": 0
    }
  ]
}

Request example

GET /bff/organisation/locales

get
curl -X GET "https://api.bizkithub.com/bff/organisation/locales" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key