Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
532 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 Reply

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}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...