I’m trying to use the okta-sdk-dotnet to get users in a group using the ListGroupUsers method.
In the example I see this line of code:
List result = apiInstance.ListGroupUsers(groupId, after, limit).ToListAsync();
In my particular case I want 10 users per page
List result = apiInstance.ListGroupUsers(groupId, null, 10).ToListAsync();
However the result contains all of the users regardless of what value I put for the limit.