We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get a list of users by segment id.
var parameters = new Dictionary<string, string>(); parameters.Add("segment_id", segmentId); var result= usersClient.List(parameters);
The result is paged by 50 users per page. How do I retrieve the next page in the results?
I see that there is a method called Next that is not yet implemented.
Next
Is there another way to get all users in a segment? Do I need to use scrolling? Do I pass in an additional parameter and call the List method again?
List
The text was updated successfully, but these errors were encountered:
Try this:
usersClient.List(new Dictionary<string, string> { { "page", "2" } });
Sorry, something went wrong.
No branches or pull requests
I get a list of users by segment id.
The result is paged by 50 users per page. How do I retrieve the next page in the results?
I see that there is a method called
Next
that is not yet implemented.Is there another way to get all users in a segment? Do I need to use scrolling? Do I pass in an additional parameter and call the
List
method again?The text was updated successfully, but these errors were encountered: