Forum Discussion
RichardS
May 12, 2023Copper Contributor
graph groups api call not returning most properties
In a sample C# app ( running on localhost) I am executing the following API calls var user = await graphClient.Me.Request().GetAsync(); var grp1= await graphClient.Me.MemberOf.Request().Selec...
VasilMichev
May 12, 2023MVP
You need permissions, as detailed for example here: https://learn.microsoft.com/en-us/graph/permissions-overview?tabs=http#limited-information-returned-for-inaccessible-member-objects
RichardS
May 15, 2023Copper Contributor
Hi @VasilMichev. Thanks for the reply.
I have the Read Groups through the native Azure Interface and , as mentioned, could add the Group.Read.All and GroupMember.Read.All API permissions to the app. However it looks like those permissions need to be approved by an Admin before they take effect.