LiquidPlanner Classic Forum
FIltering Member Query
about 5 years ago by LiquidPlanner Support
Posted on behalf of Bob Puckett. Original posting date 2017-04-06.
In my application, I need to get a list of members assigned to a specific team.
Currently, I use C# code that looks like this:
String url = $"/workspaces/{WorkspaceId}/members";
var results = GetObject<List<LpMember>>(get(url));
return results;
This call takes about 20 seconds to return. We have a lot of members. Since I only need the 10 members or so from a specific team, it would be great if there was a way to filter to a team.
I tried this initially, but it looked like you can't filter on the members URl.