/bff/calendar/event-storno-series
Cancels or restores all events in a recurring series at once. Pass any event code from the series (parent or child) and all related events will be updated. Each event is processed individually — storno notifications are sent per event and each action is logged. Events that already have the desired storno status are skipped. For non-recurring events this behaves like a single storno.
Calendar EventpostBffCalendarEvent-storno-series
Parameters
3 body
Body · 3
calendarIdstringRequiredCalendar code.
eventIdstringRequiredAny event code from the recurring series (parent or child). The system automatically finds all events in the series.
isStornobooleanRequiredtrue = cancel all events in series, false = restore all.
Request
POST /bff/calendar/event-storno-series
curl -X POST "https://api.bizkithub.com/bff/calendar/event-storno-series" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"calendarId": "example_calendarId",
"eventId": "example_eventId",
"isStorno": false
}'Response
JSON payload
{
"success": false,
"affectedCount": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.