With our organization, we use Office 365. We would like to use all employees calendars to visualize capacity in Power BI.
Within Power BI (using get data -> OData feed) I can retrieve one of my colleague's calendar events by calling Microsoft Graph with the following command:
/v1.0/users/[email]/calendar/events
Is it also possible to load the events of all employees calendars directly into Power BI using Microsoft Graph?
(All users can be called via /v1.0/users
, but even better: all relevant users can be called via a group we already have: /v1.0/groups/[group_id]/members
)