On creating a new event
in a user's calendar, I receive a push notification that contains the id
of the newly created event. In order to get more details about this event, I make the Get Event call:
https://learn.microsoft.com/en-us/graph/api/event-get?view=graph-rest-1.0
This returns all the event details for that particular event, but it does not seem to be returning the id
of the calendar
in which the event was created. I need it to attach this event to existing calendar in my local cache.
I have looked at the API spec but do not see calendar id field anywhere.
I would like to get an idea on how to get calendar id after making a get event call.