-
-
Notifications
You must be signed in to change notification settings - Fork 14
MS Calendar
RogerSelwyn edited this page Jun 5, 2024
·
5 revisions
The following calls are made:
- (GET) URL: https://graph.microsoft.com/v1.0/me/calendars
- {'params': None, 'headers': {}, 'allow_redirects': True, 'verify': True}
- Get list of calendars
- (GET) URL: https://graph.microsoft.com/v1.0/me/calendars/{obscure_guid}
- {'params': None, 'headers': {}, 'allow_redirects': True, 'verify': True}
- Get the base calendar to setup for future calls
- (GET) URL: https://graph.microsoft.com/v1.0/me/calendars/{obscure_guid}
- {'params': {'$top': 999, 'startDateTime': '2024-05-31T23:00:00+00:00', 'endDateTime': '2024-06-01T23:00:00+00:00', '$select': 'seriesMasterId,location,showAs,end,categories,attendees,start,sensitivity,body,isAllDay,subject'}, 'headers': {}, 'allow_redirects': True, 'verify': True}
- Get Today for HA core
- (GET) URL: https://graph.microsoft.com/v1.0/me/calendars/{obscure_guid}
- {'params': {'$top': 999, 'startDateTime': '2024-06-01T10:11:52.003033+00:00', 'endDateTime': '2024-06-03T10:11:52.003040+00:00', '$select': 'seriesMasterId,location,showAs,end,categories,attendees,start,sensitivity,body,isAllDay,subject'}, 'headers': {}, 'allow_redirects': True, 'verify': True}
- Get required events within offsets - (0-48) - for
data
attribute