I am trying to set the reminder of a calendar event to None by code using Microsoft Office 365 API
I am passing -1 value to Microsoft.Office365.OutlookServices.Portable.dll, v1.0.41.0 (using the updated DLL's) Event class reminder property and creating the event
The event is causing issue in Outlook as I am passing -1 to nullable integer type reminder and it is taking it as -1 minutes to the value of reminder. OKAY. Makes sense.
But it is not allowing me to create an event with null as reminder and taking 15 minutes as default value to reminder.
Moreover it is not updating the reminder value of any event to null but when I set any reminder to none in Office 365 then trying to fetch the event, it is fetching the value as null. And when I am setting -1, it is OK in Office 365 web portal but creating issues in Outlook synced events on Desktop
Please suggest what value of reminder should I pass or how can I create an event with None as Reminder in Office 365. Please let me know if I missed anything or if any other info is required.