Outlook Calendar Real Time Events
List of Events Supported by Outlook Calendar
Event ID | Support | Notes |
---|---|---|
calendar_events_new | Yes | |
calendar_events_deleted | Yes | |
calendar_events_modified | No | Update 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"
]
}'
Updated 7 days ago