I am trying to create a new list through the API, using the C# Wrapper Library. I am using the following code, but it is not creating a new list. It seems to give me back the Atom code in the stringBuilder, but it seems to do nothing else. The line after that does give me back the lists that I have currently, successfully. Anyone know what I am missing? Thanks so much for the help!!! AuthenticationData authdata = newAuthenticationData(); authdata.Username ="myusername"; authdata.Password ="mypassword"; authdata.ApiKey ="4600006d-0000-0000-0000-9500000003e1"; string nextLink; Utility.IsValidUserAuthentication(authdata); //Create New List StringBuilder sb = newStringBuilder(); ContactList myNewList = newContactList(); myNewList.Id ="199"; myNewList.Name ="SAMPLELIST"; myNewList.OptInDefault =false; sb = ContactListComponent.CreateNewContactList(myNewList); IList<ContactList> lists = Utility.GetUserContactListCollection(authdata, out nextLink);
... View more