Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all event types of the organisation enriched with position and the linked product (code + display name). Ordered by position ASC. Consumed by the admin "Calendar event types" settings tab.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredcodestringRequiredUnique event type code.
labelstringRequiredDisplay label.
colorstringRequiredHex color (e.g., "#FF5733").
positionnumberRequiredSort position within the organisation.
productCodestringOptionalLinked product code (admin URL slug). Omitted if not linked.
productNamestringOptionalLinked product display name (first translation). Omitted if not linked.
itemCountnumberRequiredTotal number of event types for the organisation.
{
"items": [
{
"code": "example_code",
"label": "example_label",
"color": "example_color",
"position": 0,
"productCode": "example_productCode",
"productName": "example_productName"
}
],
"itemCount": 0
}GET /bff/calendar/event-type-grid
curl -X GET "https://api.bizkithub.com/bff/calendar/event-type-grid" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.