Outlook Calendar Real Time Events

List of Events Supported by Outlook Calendar

Event IDSupportNotes
calendar_events_newYes
calendar_events_deletedYes
calendar_events_modifiedNoUpdate support will be live soon.

Subscribe to Outlook Calendar Real Time Events

To subscribe to real time events in Outlook, you can use the Subscribe to Real Time Events API. A cURL for the same would look like:

curl --location 'https://api.getknit.dev/v1.0/events.subscribe' \
--header 'X-Knit-Integration-Id: <YOUR_INTEGRATION_ID>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--data '{
    "events": [
        "calendar_events_new",
        "calendar_events_deleted"
    ]
}'