I would like to export my mail-list to ConstantContacts so I’m trying to create the new list and fill it with my contacts.
Using ConstantContactsUtility.Utility for an ASP Upload Form sample I do the following:
ContactList firstList = new ContactList( nextListId, nextListName );
ContactList secondList = Utility.CreateNewContactList( authenticationData, firstList );
// At this point secondList.Id and secondList.Name are nulls.
// But I can see the added ContactList at the end of currentContactLists at the next step
IList<ContactList> currentContactLists = Utility.GetUserContactListCollection(authenticationData, out nextChunkId);
// After getting new ContactList from this collection I can fill it with contacts.
Is there any way to get newly created ContactList without using GetUserContactListCollection()?
... View more