So i have this scenario where I need to synch events from outlook to an external app. My issue with deleted events.
I'm doing the following:
1.System starts I call
/calendarView/delta?startDateTime={start_datetime}&endDateTime={end_datetime}
2.Next fetch I check for deleted events agains the stored delta
/calendarView/delta?deltatoken=XXXXXXXX
My issue is when a user adds an event to his Outlook Calendar that is outside the start_datetime and end_datetime this event will come as deleted on the call I make on step 2.
I know from reading the Docs that this is expected but am wondering how get around it in a way that does not involve either checking for each event that comes on step 2 if it's actually deleted or making the dates on step one so wide that the chances of this happening are small.
Any help please? Is there any other way to do this that I'm no seeing? Thanks !