BizKitHub
DocsAPI ReferenceCalendar Event/bff/calendar/event-make-recurring
postCalendar EventAdmin BFF

/bff/calendar/event-make-recurring

Turns a standalone event into a recurring template ("vzor") by creating sibling events that point to it via parent_event_id. Fields (title, description, agenda, url, location, type, blocking flag, all-day flag, reservedBlockingTo) are copied from the parent. Refuses if the event is already part of a recurring series.

Calendar EventpostBffCalendarEvent-make-recurring

Parameters

JSON body

Request body

application/json
eventIdstringRequired

External event code of the (currently non-recurring) event that should become the series parent.

periodDatesobject[]Required

List of occurrences for the new recurring series. The occurrence whose start/end exactly matches the parent event is skipped automatically.

Each array item:
dateFromstringRequired

Occurrence start time (ISO 8601).

dateTostringRequired

Occurrence end time (ISO 8601).

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the conversion was successful.

addedCountnumberRequired

Number of sibling occurrences created.

Response example

application/json
{
  "success": false,
  "addedCount": 0
}

Request example

POST /bff/calendar/event-make-recurring

post
curl -X POST "https://api.bizkithub.com/bff/calendar/event-make-recurring" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "eventId": "example_eventId",
  "periodDates": [
    {
      "dateFrom": "example_dateFrom",
      "dateTo": "example_dateTo"
    }
  ]
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key