I'm fetching events from the Microsoft Graph API: https://graph.microsoft.com/v1.0/me/events/.
But the event object doesn't include any information about the calendar where it came from, where it belongs.
{
"@odata.etag": "W/\"VdMXVdJPi0Svr+Ahlbtc8WAAF++CrQ==\"",
"id": "AQMkADAwATM0MDAAMS6wZmQ0LTZkNjItMDACLTAwCgBGAAADJYZccw8wNUCHxKfq_uQ8CQcAVdMXVdJPi0SvrwDgIZW7XPMAAAIBDQAAAFXTF1XST4tEr68A4CGVu1zzAAAAF-EXzwAAAA==",
"subject": "test event title"
}
Is there any way to get the Id of the calendar in the event object?
Thanks