Hi @Ivan Ferro
The blue area of the documentation has an important note on this.
So try using this API on the beta endpoint or use the /groups/{id}?$expand=members
API instead.
var result = await graphClient.Groups["{group-id}"].GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Expand = new string []{ "members" };
});
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.