I'm using Microsoft Graph API for integration of microsoft/outlook calendar and events.
API Reference is here I want to specify my own custom id for event while creating an event with this rest API, but I didn't find any way to do so. It automatically created an id. Is there any way of specifying our own Id.
Following is my request:
POST: https://graph.microsoft.com/v1.0/me/events
{
"subject": "My event",
"start": {
"dateTime": "2017-10-05T07:57:45.679Z",
"timeZone": "UTC"
},
"end": {
"dateTime": "2017-10-12T07:57:45.679Z",
"timeZone": "UTC"
}
}