S-Wing
S-Wing

Reputation: 591

Get incremental changes to events in a calendar view

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

Answers (1)

Marc LaFleur
Marc LaFleur

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

Related Questions