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?