Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all available timezones in the system. Use this to populate a timezone picker when configuring the organisation default timezone.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredAll available timezones ordered by GMT offset.
idnumberRequiredInternal timezone ID. Use this value when setting timezoneId in update-profile.
timezonestringRequiredIANA timezone identifier. Used to format dates in email notifications and calendar events.
Europe/PraguegmtstringRequiredGMT offset string for display purposes.
+01:00labelstringRequiredHuman-readable timezone label for picker display.
Central European Time - Prague{
"items": [
{
"id": 0,
"timezone": "Europe/Prague",
"gmt": "+01:00",
"label": "Central European Time - Prague"
}
]
}GET /bff/organisation/timezones
curl -X GET "https://api.bizkithub.com/bff/organisation/timezones" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.