/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
2 body
Body · 2
eventIdstringRequiredExternal event code of the (currently non-recurring) event that should become the series parent.
periodDatesobject[]Required2 fieldsList of occurrences for the new recurring series. The occurrence whose start/end exactly matches the parent event is skipped automatically.
Request
POST /bff/calendar/event-make-recurring
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"
}
]
}'Response
JSON payload
{
"success": false,
"addedCount": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.