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

/bff/calendar/event-storno

Cancels or restores a single calendar event. Sends storno notification emails to all attendees and logs the action.

Calendar EventpostBffCalendarEvent-storno

Parameters

JSON body

Request body

application/json
calendarIdstringRequired

Calendar code.

eventIdstringRequired

External event code identifier.

isStornobooleanRequired

true = cancel, false = restore.

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the event was found and updated.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/calendar/event-storno

post
curl -X POST "https://api.bizkithub.com/bff/calendar/event-storno" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "calendarId": "example_calendarId",
  "eventId": "example_eventId",
  "isStorno": false
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key