0
votes

I need to get the list of members and owners from a team in Microsoft Teams. So far I've been doing it using GET /groups/{id}/owners method with Graph API. But to use it, it requires Group.Read.All permission which needs an admin consent. Is there any other way to get team owners that don't require the use of an admin only permission?

1

1 Answers

2
votes

No. No matter which type of permission (application permission or delegated permission) you are using, Group.Read.All is necessary.

And both application permission and delegated permission are requiring admin consent. There is no other way to bypass admin consent.

See details from List owners Permissions.

enter image description here