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
10
votes
2 answers

Search Members using MailChimp API 3.0 by Merge Field

Is is possible to search for members in a MailChimp list by merge field using the MailChimp API v3.0? The documentation for the Search Members endpoint links to a separate page, Search for Campaigns and Contacts in Your Account, which details how…
Armstrongest
  • 15,181
  • 13
  • 67
  • 106
10
votes
4 answers

mailchimp 3.0 Get template in html form

Is there a way to get the actual html file in Mailchimp API 3.0? I tried this method, /3.0/templates/{template-Id}?apikey={myAPIkey} but it's not returning the actual file, it's giving me the thumbnail of the template.
TheDevGirl
  • 101
  • 1
  • 3
10
votes
1 answer

MailChimp API v3 campaign content template sections

I'm referring to this page in the API documentation when trying to programatically create content for a MailChimp campaign. I have the following section in my template and I'm trying to change its content: To be replaced by…
Joe Bligh
  • 131
  • 1
  • 6
10
votes
2 answers

Sending Welcome Email when using Mailchimp API 3 List/Member Method

Is there a way to send the Mailchimp Welcome Email when using Mailchimp API 3 List/Member method? Older API implementations can do it without the need for Automation (paid feature), but I am not sure if API 3 supports it in List/Member method. I am…
Edville
  • 345
  • 1
  • 5
  • 18
10
votes
3 answers

Calling MailChimp API v3.0 with .Net

I'm trying to access our MailChimp account via the new 3.0 REST API. I've done the following: using(var http = new HttpClient()) { var creds = Convert.ToBase64String(Encoding.ASCII.GetBytes("username:mailchimpapikey-us1")); …
RHarris
  • 10,641
  • 13
  • 59
  • 103
9
votes
5 answers

MailChimp API 3.0 Invalid Resource Error

I am simply trying to add a new member to a MailChimp list. But I keep getting the following error and can't quite understand why: type: http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/ title: Invalid Resource status:…
AndroidNewb
  • 441
  • 3
  • 6
  • 14
9
votes
2 answers

Sending final welcome mail with Mailchimp API v3.0 without double opt-in

I would like to use the Mailchimp v3.0 API to send a final welcome mail, without going through the double opt-in procedure. If I set the status to "pending" I get the double opt-in, at least sometimes, and of course the final welcome mail, as…
patrik
  • 123
  • 8
9
votes
4 answers

Mailchimp API V3 jQuery Ajax POST subscribers

There has been a big update on the Mailchimp API (v3.0) and many of the jQuery plugins are out of date in order to POST subscribers on form.submit(). After reading v3.0 docs: Managing subscribers suggests the following JSON object format: { …
Gus
  • 6,545
  • 4
  • 36
  • 39
9
votes
3 answers

Updating subscribers in a list using cURL and Mailchimp API v3

I have this code below that adds a user to a pre-existing list in Mailchimp. $apikey = ''; $auth = base64_encode( 'user:'.$apikey ); $data = array( 'apikey' => $apikey, 'email_address' =>…
VenomRush
  • 1,622
  • 3
  • 15
  • 25
8
votes
0 answers

Mailchimp - Signup Form - Using Tags

I've been using 'Groups' selection in my Mailchimp signup forms. But is it possible to use 'Tags' in the same way? I've got a MC signup form embedded on my site and wondering if I can replace the 'Groups' with 'Tags', so the new subscribers would be…
Joe Bloggs
  • 1,410
  • 2
  • 24
  • 53
8
votes
2 answers

MailChimp: Why is PUT method with javascript returning "Use PUT to insert or update list members"

I'm trying to update one of my subscriber's status using mailchimp API 3.0, Meteor and javascript. Here is my js code I'm using: request({ uri, list_id, method: 'PUT', headers: { 'Content-Type': 'application/json', 'Authorization':…
Virthuss
  • 3,142
  • 1
  • 21
  • 39
8
votes
2 answers

MailChimp Campaign Content Update

MailChimp campaign content docs - https://developer.mailchimp.com/documentation/mailchimp/reference/campaigns/content I'm trying to replace some placeholders in a campaign content with actual values via the API. At first, I thought there might be…
Ravenous
  • 1,112
  • 11
  • 25
8
votes
1 answer

Axios POST to Mailchimp API: HTTP Authentication not working

I'm trying to make an axios request to my mailchimp account. But it does not seem to be working. I cannot get it to authorize me - what am I doing wrong here? I have been following this tutorial: which says: There are 2 authentication methods for…
R. Kohlisch
  • 2,823
  • 6
  • 29
  • 59
8
votes
2 answers

Where do I find the workflow id of an automation in Mailchimp?

I would like to use Mailchimp Api 3.0 to add a subscriber to an automation workflow, but I can't find where the workflow_id or workflow_email_id are located... this is from the documentation: POST…
Gelun
  • 169
  • 1
  • 2
  • 8
8
votes
0 answers

MailChimp API V3 Dynamic content

I am investigating the possibilities of MailChimp for mailings. One of the requirements we are looking for is to add dynamic content to a campaign. According to some SO questions Looking to give MailChimp dynamic content? Mailchimp API not…
Roeland
  • 820
  • 1
  • 9
  • 33
1
2
3
38 39