Ok, I tried the following:
- Using MS Graph explorer, Created an event (POST call) with correct payload and with the isonlinemeeting property in it
- It creates an event without any problem, but Graph explorer doesn't return the isonlinemeeeting property
- When i make GET call for the above created event id, i see the isonlinemeeting property
Also i tried with following call and it works for me too!!
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var @event = await graphClient.Me.Events["AAMkAGRlNWM4Njk4LWY3NTYtNGE2MC05ZjQzLTg1YmM5YjIzNTRhMwBGAAAAAAA-L78mmzKFQ7FpvCcWkAziBwCUgufVfU8cSKxkYzIkrl81AAAAAAENAACUgufVfU8cSKxkYzIkrl81AACABIevAAA="]
.Request()
.GetAsync();