Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
533 views
in Technique[技术] by (71.8m points)

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...