DocsAPI ReferenceCalendar Event/bff/calendar/event-storno-series
postCalendar EventAdmin BFF

/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

3 total
Body · 3
calendarIdstringRequired

Calendar code.

eventIdstringRequired

Any event code from the recurring series (parent or child). The system automatically finds all events in the series.

isStornobooleanRequired

true = cancel all events in series, false = restore all.

Request

POST /bff/calendar/event-storno-series

post
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.

Get API Key