I'm using Graph API to get/list and create calendar events. Lately I was trying beta API and recently I've encountered following error on attempt to create calendar event:
The property 'iCalUId' does not exist on type 'Microsoft.OutlookServices.Event
I'm performing POST request using following address:
https://graph.microsoft.com/beta/Users('<user-id>')/calendars/<id>/events
with a JSON object containing 'iCalUId' property. That object was retrieved using beta version of Graph API couple of weeks ago. And at that time creation of calendar event with the same request worked properly.
Documentation states that there is such property.
The question is - am I doing something wrong? or is it beta API that was changed recently? If later - how can I know if there are changes made to beta API?