Parameters
JSON body
Request body
application/jsoncalendarIdstringRequiredCalendar code.
eventIdstringRequiredExternal event code identifier.
isStornobooleanRequiredtrue = cancel, false = restore.
Cancels or restores a single calendar event. Sends storno notification emails to all attendees and logs the action.
JSON body
calendarIdstringRequiredCalendar code.
eventIdstringRequiredExternal event code identifier.
isStornobooleanRequiredtrue = cancel, false = restore.
1 status code documented
successbooleanRequiredWhether the event was found and updated.
{
"success": false
}POST /bff/calendar/event-storno
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
}'All BizKitHub public API endpoints require authentication via API key.