Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns the list of locales configured for the current organisation. Each locale includes its code, whether it is the default, and its display position.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredConfigured locales ordered by position.
localestringRequiredLocale code (e.g. "cs", "en").
csisDefaultbooleanRequiredWhether this is the default locale for the organisation.
positionnumberRequiredDisplay order position (0-based).
{
"items": [
{
"locale": "cs",
"isDefault": false,
"position": 0
}
]
}GET /bff/organisation/locales
curl -X GET "https://api.bizkithub.com/bff/organisation/locales" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.