I get a list of users by segment id.
varparameters=newDictionary<string,string>();parameters.Add("segment_id",segmentId);varresult=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 Nextthat 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?
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
Nextthat 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
Listmethod again?