BizKitHub
DocsAPI ReferenceCalendar Analytics/bff/calendar/calendar-analytics-top-event-types
getCalendar AnalyticsAdmin BFF

/bff/calendar/calendar-analytics-top-event-types

Shows which event types dominate the calendar - critical for scaling and resource allocation decisions. Returns top 10 types with counts and percentages.

Calendar AnalyticsgetBffCalendarCalendar-analytics-top-event-types

Parameters

1 query

Query parameters

· 1
codestringRequired

Calendar code identifier.

Exampleexample_code

Response schema

1 status code documented

200Success
typesobject[]Required
Each array item:
typeIdnumberRequired

Event type ID.

typeNamestringRequired

Event type name.

eventCountnumberRequired

Number of events of this type.

percentagenumberRequired

Percentage of total events.

totalEventsnumberRequired

Total number of events analyzed.

Response example

application/json
{
  "types": [
    {
      "typeId": 0,
      "typeName": "example_typeName",
      "eventCount": 0,
      "percentage": 0
    }
  ],
  "totalEvents": 0
}

Request example

GET /bff/calendar/calendar-analytics-top-event-types

get
curl -X GET "https://api.bizkithub.com/bff/calendar/calendar-analytics-top-event-types?code=example_code" \
  -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