akshath
akshath

Reputation: 61

Office 365: How to fetch deleted Calendar Events using REST API?

Even after going through the REST API document several times, I could not find a way to fetch Deleted events from Office365. Is there a way to get them?

Also in the document under "Sync Events" it says all the events Created, Updated and Deleted in user's calendar is fetched. But still I am not getting any deleted events.

Upvotes: 1

Views: 1121

Answers (1)

Jason Johnston
Jason Johnston

Reputation: 17692

No, the API does not return deleted events. Once they are deleted, they are no longer a part of the results.

For sync, you will get a delete entry with only the item's ID if you previously synced that item and then the user deletes it. It doesn't return all deleted events, only ones that are relevant to your sync state.

Upvotes: 2

Related Questions