Could anybody help me with creating an event with Microsoft Graph API.
Desirable behavior is to add a link to the event which is clickable in majority of the calendar clients. Here is an example of the event payload I’ve used:
{
...
"body": {
"ContentType": "HTML",
"Content": "<a href=\"https://somelink.com\">Start Online Meeting</a>"
},
"onlineMeetingUrl": "https://somelink.com"
}
This payload is sent as POST request to https://graph.microsoft.com/v1.0/me/events
current response is:
{
...
'onlineMeetingUrl': null,
...
}
and details of the event are not clickable in the calendar app and displayed like plain text
Start Online Meeting
or is converted to
Start Online Meeting <https://somelink.com>
in Google calendar
Thanks for help!