Harini vetrivel
Harini vetrivel

Reputation: 21

editing an occurence in a recurrence event in outlook calendar

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

Upvotes: 1

Views: 593

Answers (1)

Jason Johnston
Jason Johnston

Reputation: 17702

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}

Upvotes: 1

Related Questions