0

Is there anyway to get the list of contact details from mailchimp using ecwid-mailchimp api?

 ListMembersMethod li = new ListMembersMethod();
 li.apikey = apikey;
 li.id = listId;
 li.limit = (int) memberCount;
 ListMembersResult execute = mailChimpClient.execute(li);

This code will just give me short info i.e. email and time strap. How to get full info of the members?

ekad
  • 14,436
  • 26
  • 44
  • 46
Gaurab Pradhan
  • 281
  • 1
  • 5
  • 14
  • The answer here is probably "yes", but it's not clear what you need help with. What have you tried? Is there something that's not working? – TooMuchPete Mar 10 '16 at 23:21
  • @TooMuchPete thanks for quick response. I am trying to get all contact list from mailchimp and process it and insert into my local db. Using ecwid-mailchimp api i was able to connect to mailchimp but unable to get list of contact info. I would like to know is there any specific class or method to grab contact list from mailchimp? if yes could you please guide me? – Gaurab Pradhan Mar 11 '16 at 03:19
  • What contacts are you looking for? Do you mean subscribers to your a list? – TooMuchPete Mar 11 '16 at 04:37
  • @TooMuchPete yes i want to get whole contact info from my mailchimp like emial, first name, second name, phone etc etc. – Gaurab Pradhan Mar 11 '16 at 12:09
  • Do you have any code already? Can you describe what you have tried to do to accomplish this and how it didn't work? – TooMuchPete Mar 11 '16 at 15:18
  • @TooMuchPete I have edited my question. Thanks – Gaurab Pradhan Mar 21 '16 at 09:23

0 Answers0