gad0lin
gad0lin

Reputation: 121

Microsoft graph API: finding event by iCalUid

I would like to decline one instance of recurring meeting. I only have masterSerieId, iCalId, time of that instance.

Do you know how I could cancel that instance?

Do I have to query using masterId and time of the instance to find event id or there is a way I would just find eventId using iCalId?

Upvotes: 3

Views: 5053

Answers (2)

Cem Yilmaz
Cem Yilmaz

Reputation: 41

Sadly the calendar view endpoint does not include events which are part of an event series if you match against a given iCalUId. So if an event has a seriesMasterId which is not null, you wont find it by filtering for the iCalUId.

Upvotes: 3

Dmitry Pimenov
Dmitry Pimenov

Reputation: 739

You can use OData query options to filter on just the event that has that particular iCalUId.

For instance: GET https://graph.microsoft.com/v1.0/me/events?$filter=iCalUId eq '<your iCalUId>'

Upvotes: 13

Related Questions