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)?
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...