Questions tagged [mailchimp-api-v3.0]

MailChimp API v3.0 is the third major version of MailChimp API, which allows you to sync your database with MailChimp for better list and campaign management. Use this tag for questions about how to use the API or integrating the API with a specific programming language. Include the language tags (C#, PHP, Python, etc) if you're integrating with any of those languages.

Official Developer Site: Link

573 questions
3
votes
1 answer

Mailchimp package not adding email address to list

I am using the following laravel package for my newsletters: laravel-newsletter. I have the following code in my newsletterController.php: public function index() { Newsletter::subscribe('rincewind@discworld.com', ['FNAME'=>'Goti',…
Alexander Solonik
  • 9,838
  • 18
  • 76
  • 174
3
votes
1 answer

JSON showing error with MailChimp signup form

I'm trying to make a basic MailChimp signup form by using their API. I got a easy way from stackoverflow answer and I was follow code same to same. Hope everything is ok but when trying to submit form then data not sending. I saw a JSON error by…
AB Siddik
  • 337
  • 5
  • 18
3
votes
3 answers

Mailchimp - how can I tell if a user has unsubscribed themselves?

So they've clicked the unsubscribe link in a newsletter. In their profile it says, for example: This person unsubscribed on Mar 24, 2017 2:40 pm After receiving "Newsletter Test#6" Great, but how can I tell programmatically, via the API, if someone…
nmit026
  • 3,024
  • 2
  • 27
  • 53
3
votes
1 answer

MailChimp API resubscribe confirmation mail not longer sending

When a contact with status unsubscribed tries to subscribe with the same mail address again, I send a PUT request with status pending in order to trigger the opt-in process. Suddenly the confirmation mail stopped from being sent. The contact…
Arne Cordes
  • 581
  • 1
  • 6
  • 22
3
votes
1 answer

Mailchimp Subscribe using API v3.0

I'm trying to subscribe an email to a MailChimp list in PHP. I've actually not a backend developer, so I'm stagnant in this :( I'm using a MailChimp helper PHP library: https://github.com/drewm/mailchimp-api I've already searched all the internet…
Fabio Sampaio
  • 153
  • 2
  • 8
3
votes
1 answer

Mailchimp signup form with angular2

I am trying to embed a mailchimp sign up form to my angular2 application. http://kb.mailchimp.com/lists/signup-forms/add-a-signup-form-to-your-website I am stuck at doing a http post call to mailchimp server. I am referencing the angular2 guide…
slvn dev
  • 55
  • 2
  • 4
3
votes
1 answer

No Web_Id in MailChimp API V3

I am in the process of upgrading a Mailchimp integration to use the latest version of the API (V3). In V2 of the API, campaign objects had a Web_Id, which was an integer and could be used to create a browsable URL link. EG:…
Wadlez
  • 43
  • 6
3
votes
3 answers

Mailchimp API 3.0 equivalent of older export API campaignSubscriberActivity

I'm looking for the equivalent of the older campaignSubscriberActivity export options. Specifically, I need to get all activity for campaign since a certain date. Is that possible in 3.0?
olessia
  • 31
  • 3
3
votes
1 answer

Mailchimp API 3.0 - Add / remove a user to a list > group > group name

I am trying to use the Mailchimp API 3.0 to insert a user into a list > group > group name with php. I found a nice example using curl, here it is, but, as you can see, here he shows only to add a user into a list, and not in group > group name.…
somtam
  • 347
  • 1
  • 3
  • 10
3
votes
1 answer

Batch Subscibe/Unsubscribe using MailChimp API v3.0

I am building an SSIS package to communicate with the Mailchimp API and batch subscribe/unsubscribe emails to certain lists. The calls are sent fine and the job is started, every response I sent returns an error with a message of is…
plantpowerjames
  • 375
  • 2
  • 10
  • 22
3
votes
2 answers

Mailchimp API v3.0 add pending member without confirmation email

I am executing a curl call via php to Mailchimp API v3.0. When a user sign up to my cms, I sent him a confirmation email and add a member to a specific Mailchimp list, calling this…
3
votes
3 answers

How to create a campaign using mailchimp v3.0

I am trying to create a new campaign using MailChimp API v3.0 but I do not see any method that allows me to make this in the resources of the API. Does anyone know how I can do this?
Iván
  • 33
  • 1
  • 7
3
votes
3 answers

Is there search-members helper in MailChimp v3?

I've been meaning to use MailChimp API, and since v3 is out already, I'd like to use it. I see there's a search-members helper like in v2 (https://apidocs.mailchimp.com/api/2.0/helper/search-members.php) and what is the endpoint for it?
ivanacorovic
  • 2,669
  • 4
  • 30
  • 46
3
votes
1 answer

Check if an email address is already in a list using MailChimp API v3.0 without subscribing the email address

Is it possible to check whether the email is already in a list or not via the new MailChimp API v3.0? I know I can make a post request to the lists/{list_id}/members/ endpoint that returns a 400 Bad Request error if the email is in the list. This…
rolandsaven
  • 143
  • 2
  • 9
2
votes
1 answer

mailchimp add member returning status 400 member exists

According to my understanding of mailchimp documentation, if one tries to add a member which already exists, it should return http status of 200, along with a member status of possible values: "subscribed", "unsubscribed", "cleaned", "pending", or…
Peri Hartman
  • 19,314
  • 18
  • 55
  • 101