DocsAPI ReferenceCalendar Event/bff/calendar/event-find-conflict
postCalendar EventAdmin BFF

/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

2 total
Body · 2
calendarIdstringRequired

External calendar code.

eventListobject[]Required4 fields

List of proposed events to check for conflicts.

Request

POST /bff/calendar/event-find-conflict

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

Get API Key