问题
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