Microsoft graph API: finding event by iCalUid

笑着哭i 提交于 2020-06-27 18:28:27

问题


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?


回答1:


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>'



来源:https://stackoverflow.com/questions/47421463/microsoft-graph-api-finding-event-by-icaluid

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!