/bff/calendar/event-find-conflict
Checks whether proposed events conflict with existing events on the given calendar. Returns a list of conflicting time slots.
Calendar EventpostBffCalendarEvent-find-conflict
Parameters
2 body
Body · 2
calendarIdstringRequiredExternal calendar code.
eventListobject[]Required4 fieldsList of proposed events to check for conflicts.
Request
POST /bff/calendar/event-find-conflict
curl -X POST "https://api.bizkithub.com/bff/calendar/event-find-conflict" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"calendarId": "example_calendarId",
"eventList": [
{
"startTime": "example_startTime",
"endTime": "example_endTime",
"isAllDay": false,
"isBlocking": false
}
]
}'Response
JSON payload
{
"success": true
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.