In mailchimp api V2. I was able to do retrieve newsletter subscription list using one method: lists/member-info
.
In V3. I have to use methods:
/lists/{listid}/members
, to retrieve all members, and to find the emailid- then use a method:
/lists/{listid}/members/{emailid}
to retrieve the subscription list{interest}
In our case, we now have 20K+ email addresses, so step 1 will quite bit slow (20k/1k=20 times). Is there a way I can get the subscription list quickly?