I have a mailchimp account, I would like to add a new list to my mailchimp account using the PHP library for MailChimp.
I encoded the following to add a new group to this list.
$mailChimp = new MCAPI($api_key); $mailChimp->listInterestGroupAdd($mylistId, $group_name);
The above code is used to add a new group to an existing list.
Is it possible to add a new list, which method is available to add a new list? Can i use this?
$mailchimp->listAdd($listname);
Here is the documentation for Mailchimp API v1.3 and all the list-related features. But I do not have a method that will allow us to add a new list.
http://apidocs.mailchimp.com/api/1.3/#listrelated
source share