I was wondering about how can I add new subscriber to mailchimp list using asp.net.
Here is the code I have which do nothing in that issue:
var entry = new Dictionary<string, object>();
entry.Add( "FNAME", "x");
entry.Add( "LNAME", "y" );
var lsi=new listSubscribeInput(apiKey,listId,"xyz@abc.com",entry);
var ls=new listSubscribe(lsi);
ls.Execute();
Using the latest API (1.3) you can add a subscriber to a list using:
See MailChimp API.