Hi I'm trying to get the events from the room mailbox using graph client. Like we retrieve events from the user calendar as follows.
var queryOptions = new List<QueryOption>()
{
new QueryOption("startDateTime", startDateTime),
new QueryOption("endDateTime", endDateTime)
};
var calendarView = await graphClient.Users[{user_id}].CalendarView
.Request(queryOptions)
.GetAsync();
Is there any way to fetch events from the room calendar using graph client.
Any help is appreciated.