editing an occurence in a recurrence event in outlook calendar

末鹿安然 提交于 2020-01-06 06:54:29

问题


I have edited only one event in a recurrence series. While I send a get request with delta token I will get the seriesmaster content, and the edited occurence with type exception

My question is how do I patch these kind of events.what is the attribute to add the exception date


回答1:


In order to create an exception, you would need to modify (via PATCH) the instance you want to become the exception.

If you do:

GET /me/events/{event-id-of-master}/instances?startDateTime={start}&endDateTime={end}

You get back a list of instances in the recurrence that fall between start and end. You'll notice that each instance has it's own ID. Using that ID, you PATCH the instance just like patching any other non-recurring event:

PATCH /me/events/{id-of-instance}


来源:https://stackoverflow.com/questions/45815649/editing-an-occurence-in-a-recurrence-event-in-outlook-calendar

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