BizKitHub
DocsAPI ReferenceCalendar Event/bff/calendar/event-type-grid
getCalendar EventAdmin BFF

/bff/calendar/event-type-grid

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.

Calendar EventgetBffCalendarEvent-type-grid

Parameters

No parameters required

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

Response schema

1 status code documented

200Success
itemsobject[]Required
Each array item:
codestringRequired

Unique event type code.

labelstringRequired

Display label.

colorstringRequired

Hex color (e.g., "#FF5733").

positionnumberRequired

Sort position within the organisation.

productCodestringOptional

Linked product code (admin URL slug). Omitted if not linked.

productNamestringOptional

Linked product display name (first translation). Omitted if not linked.

itemCountnumberRequired

Total number of event types for the organisation.

Response example

application/json
{
  "items": [
    {
      "code": "example_code",
      "label": "example_label",
      "color": "example_color",
      "position": 0,
      "productCode": "example_productCode",
      "productName": "example_productName"
    }
  ],
  "itemCount": 0
}

Request example

GET /bff/calendar/event-type-grid

get
curl -X GET "https://api.bizkithub.com/bff/calendar/event-type-grid" \
  -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