How to add a new list to my MailChimp account? PHP programming?

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

+6
source share
2 answers

I think this cannot be done using the API.

You can create the list you want in the web application and also check the group to structure the list data.

+2
source

It looks like the MailChimp v1.3 API is deprecated. You must use the new version v2.0 . I checked the API documentation. I could not find the function you were looking for.

+2
source

Source: https://habr.com/ru/post/954585/


All Articles