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
6
votes
0 answers

Using MailChimp API v3.0 can I filter out results using merge_fields?

I want to use MailChimp's API (v3.0) to get a list of my subscribers. Specifically, I want to only get subscribers with a first name of "Ken". This is the URL I've constructed to do that, but I'm not getting what I want. It returns a list of emails…
jkupczak
  • 2,891
  • 8
  • 33
  • 55
6
votes
3 answers

Check whether email is subscribed to list in MailChimp API 3.0 using PHP

I've just read the following on the MailChimp website: MailChimp API v3.0 is now live! Prior versions will no longer be supported after 2016, so all API users should begin transitioning to v3.0. As a result, I would like to move to v3.0 of the…
Isaac Adni
  • 831
  • 4
  • 14
  • 29
6
votes
2 answers

MailChimp API v3.0 Campaign Schedule Error

I'm using the MailChimp API v3.0 and trying a schedule a campaign but every time I schedule and then check from my account it is not getting scheduled properly. Here's the code I have, if($camp_content){ $camp_schedule =…
Dilhan Nakandala
  • 301
  • 5
  • 24
6
votes
2 answers

Cannot create segment using MailChimp API v3

I'm using the "playground" to test creating a segment but I keep getting validations errros my request: { "name": "MyTest", "options": { "match": "any", "conditions": [ { "field": "EMAIL", …
Hans Hansen
  • 61
  • 1
  • 2
6
votes
2 answers

Adding Custom Merge Tags in Mailchimp API 3.0

I have get around everywhere, but cannot find any clue to add custom merge tags through the api v3.0. The documentation seems to be very poor and cryptic. I saw that in the previous version, it can be done through listMergeVarAdd() method. What I…
Ari
  • 4,643
  • 5
  • 36
  • 52
6
votes
3 answers

How do I get more than 10 entries from Users or Interests using Mailchimp API 3.0?

I have a few lists in mailchimp, some which have thousands of users and one of the representatives recommended I merge some of my lists and use 'groups' (A.K.A. Interests) to target certain audiences. I have one 'interest-category' that contains…
Steven Rogers
  • 1,874
  • 5
  • 25
  • 48
6
votes
3 answers

MailChimp send email v3.0

The version 2.0 of MailChimp APIs has a campaign send API. However I don't find any similar API on v3.0. I do find an automation API where in I can start a workflow, however it appears from the documentation that workflows can't be created using…
Abhinav
  • 1,911
  • 2
  • 13
  • 11
5
votes
3 answers

Mailchimp error recipient has too many recent signup requests

I am using Mailchimp api to subscribe user but I am getting error Recipient "anonymized@gmail.com" has too many recent signup requests I am trying to add user in list direct from mailchimp account I am getting same error or even same error when I…
Suave Umar
  • 51
  • 1
  • 2
5
votes
2 answers

mailchimp API 3.0, template html source

I am in the process of migrating from MailChimp API 2.0 to 3.0 One of the features I used in 2.0 was to retrieve the HTML source from a template https://apidocs.mailchimp.com/api/2.0/templates/info.php so I could preview how a proposed email would…
Craig Rushforth
  • 233
  • 4
  • 13
5
votes
1 answer

Does Mailchimp remember deleted subscribers

I am currently testing using the API v3.0 to integrate MailChimp with an existing form on my website. As I'm working I need to test the code at regular intervals. My problem is that when I delete my test subscriber through the Mailchimp interface…
T W
  • 439
  • 1
  • 6
  • 15
5
votes
3 answers

Mailchimp RESTful API 3.0 HTTP Basic Auth

I'm trying to use the Mailchimp API version 3.0 with basic auth. I'm using Classic ASP. The Json response is always: "API Key Missing". Set HttpReq = Server.CreateObject("MSXML2.ServerXMLHTTP") HttpReq.open "GET",…
Stephen Last
  • 5,491
  • 9
  • 44
  • 85
4
votes
1 answer

Mailchimp API: Send campaign to users with tags

I'm trying to send a campaing to a segment based on Tags (That is to list members with a specific tag) using API calls with mailchimp3 for Django, but I can't quite find what should be the right json structure to make it, this is what I've got so…
Diego Satizabal
  • 119
  • 1
  • 7
4
votes
1 answer

How can I unarchive a member using the Mailchimp API?

I'm working with the Mailchimp API v3.0 to mutate list members. Archiving members works without issues using the following endpoint: DELETE /lists/{list_id}/members/{subscriber_hash} The web-interface allows me to "unarchive" a member, reverting it…
3limin4t0r
  • 19,353
  • 2
  • 31
  • 52
4
votes
1 answer

How can I create a mailchimp campaign using tags?

I'd like to create a mailchimp campaign for a subsets of an email list by filtering the list on a tag ('test_tag') that I've applied to the intended subset. I'm not sure what the correct syntax is for this. I can't find any documentation on how to…