Reputation: 77
are there specific Scopes to query group mailboxes with Microsoft graph? Or should mailbox.read be enough?
My customer is developing an app which shall be able to read this group mailbox and we have to grant the needed permissions.
BR Thomas
Upvotes: 1
Views: 247
Reputation: 33094
It depends what you mean by "group mailbox".
If you mean messages within an O365/Outlook Group, then you'll need Group.Read.All
. Also, these are not messages
, they are conversations
so you'll need to use a different set of APIs to work with them.
If you mean a shared mailbox within Exchange, then you'll need Mail.Read.Shared
in order to access a shared mailbox.
Upvotes: 1