Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ETListSubscriberService listSubscriberService = new ETListSubscriberServiceImpl();
  2.  
  3. ... //create filter with list id and unsubscribed status
  4.  
  5. ETResponse<ETListSubscriber> response = listSubscriberService.get(client, filterByListIdAndUnsubscribedStatus);
  6.  
  7. response.getResults(); //does not return more than the 2500 limit
  8.  
  9. if(response.hasMoreResults()){
  10.  
  11. //what to do from here???
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement