Search code examples
microsoft-graph-apiexchange-server

How to get list of events via GRAPH API with LimitedDetails permissions?


I try to get a list of events via List calendarView

It works as expected when users have Reviewer permissions in the exchange server, but as soon as they have only LimitedDetails - I have an error "access denied".

I assume that the problem is that with LimitedDetails I can only get subjects (without event body).

How can I request the list of events (I need Subject, ICallId and IsAllDayEvent properties) in this case?


Solution

  • Limited Details is a FreeBusy permission so it should work in https://learn.microsoft.com/en-us/graph/api/calendar-getschedule?view=graph-rest-1.0&tabs=http as this queries the users freebusy time but it won't work when trying to query the calendar which requires reviewer or greater.