Reputation: 591
Using Microsoft Graph, how can I get incremental changes to events in a calendar view from a non-default calendar (in the docs there are only examples with default)?
Upvotes: 2
Views: 167
Reputation: 33114
You need to specify calendarView
you want using /calendars/{id}/calendarView
.
So instead of using the default calendar:
/me/calendarView/delta?startDateTime...
You address the specific calendar you want:
/me/calendars/{id}/calendarView/delta?startDateTime...
Upvotes: 3