Attempting to delete emails from a contact list(s). having no success when executing the following via the .NET wrapper APIs: Dim actSrvc As New CTCT.Services.ActivityService Dim actSrvcRsp As New CTCT.Components.Activities.Activity actSrvcRsp = actSrvc.AddRemoveContactsFromListsActivity( accessToken:=myAccessToken , apiKey:=myAPIKey , emailAddresses:=myEmailsList , lists:=myListsList ) myEmailsList has 23 items. myListsList has 1 item. This seems to execute ok. But i have seen no contacts removed from the list of contact lists i submit. and when i check results later using GetActivty( idOfTheActivity ), it always showsErrorCount = 1 And Errors(0): emailAddress = ""; lineNumber = 0; message = "sameEmailEverytime@junk.com" Can you see what i am doing wrong, or neglecting to do? Thanks in advance for any feedback:)
... View more