I am using the Microsoft Graph API to list the members in a group. My API request looks like this:
https://graph.microsoft.com/v1.0/groups/[group id]/members
This works and returns the group members. However, when I try to filter the fields returned for each user using the $select
query param, it is returning incorrect data. The request I am making is
https://graph.microsoft.com/v1.0/groups/[group id]/members?$select=id
It is returning a 200
response, but the json data returned is not being filtered. Rather, it is returning more data than was returned by the original call without the OData Query Parameter.