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
8
votes
1 answer

Can't add user to a group using MailChimp API 3.0

I'm trying to update my code for subscribing new users to my MailChimp newsletter. I would like it to add the user to a group, so that I can distinguish between users when sending out newsletters. This code, however, subscribes the user but does not…
8
votes
3 answers

Mailchimp API v3.0 add email to list via NodeJS http

I'm using NodeJS to call the new MailChimp 3.0 API in order to add an email to a list. While I can get it working via POSTman, I'm having a hard time with Node's http: var http = require('http'); var subscriber = JSON.stringify({ …
thehappycactus
  • 151
  • 1
  • 5
7
votes
2 answers

How can I retrieve list members using given a unique_email_id on Mailchimp API v3?

Given a unique_email_id, how can I retrieve all list members matching that ID? I am attempting to use the search-members endpoint, ala what I do for searching…
chrismanderson
  • 4,603
  • 5
  • 31
  • 47
7
votes
3 answers

Create campaign with dynamic segment using MailChimp API V3.0

Using MailChimp API V3.0 to create a campaign. I want to create a campaign that sends to users with a specific interest. It looks like this is possible in the docs, but I've tried every permutation I can think of. I can create the campaign fine as…
Bob Ray
  • 1,105
  • 10
  • 20
7
votes
3 answers

Finding cleaned/bounced email addresses for a MailChimp campaign or list

I'd like to automate the gathering of unsubscribe and cleaned email accounts for a given campaign. In the API playground, I see all the methods available on the List entity. Unsubscribes I see that it's in the LIST API GET…
p.campbell
  • 98,673
  • 67
  • 256
  • 322
7
votes
4 answers

Creating new subscriber validation error using MailChimp API v3.0

I've got problem with creating new member in the list using v3 API. I'm sending post request with json data : url: https://us10.api.mailchimp.com/3.0/lists//members headers: Content-type: application/json Authorization: apikey…
jacbar
  • 526
  • 2
  • 6
  • 18
7
votes
5 answers

Adding subscribers to a list in Mail Chimp 3.0 in ASP.NET

I am trying to implement Mail Chimp's new API with my ASP.NET C# website so when a user enters their email address into an input box it will be added to my mailchimp list automatically. I have tried various other methods however none of these have…
PYROv1
  • 143
  • 1
  • 10
6
votes
1 answer

Recipient-Domain-Mismatch Mailchimp

I'm currently trying to send e-mails with Mailchimp and have a verified example.com domain. The issue being that I try sending an email from no-reply@example.com to a list of emails with domains like gmail.com or outlook.com but Mailchimp returns a…
6
votes
2 answers

Where can I find the segment id of a tag in Mailchimp?

I'm trying to use the Mailchimp API v3 to add tags to multiple subscribers. According to the Mailchimp API documentation, I need the segment id of the tag to do this. Where can I find this?
Nicole Hemenway
  • 563
  • 5
  • 13
6
votes
2 answers

How to add a tag to a list member on Mailchimp?

I want to add a tag to a specific user on a mailchimp list $email = "toto@example.com"; $tag="test"; $userid = md5( strtolower( $email ) ); $data = array( 'apikey' => $mailchimp_api_key, 'email_address' => $email, 'tags' =>…
Via
  • 77
  • 1
  • 9
6
votes
1 answer

MailChimp 3.0 HTTP POST Json Example

I'm trying to make use of MailChimp's Automation trigger that activates when a subscriber's email ID is posted to an API endpoint: (link) Following the Workflow instructions, I'm using the following…
VILLAIN bryan
  • 701
  • 5
  • 24
6
votes
3 answers

Mailchimp date validate problem - ISO8601 rejected

I am trying to use Mailchimp.com's API 3.0 to add people from a PHP web server, but my datetime values for "timestamp_signup"and "timestamp_opt" are being rejected on insert subscriber. According to this page…
Ian
  • 1,941
  • 2
  • 20
  • 35
6
votes
1 answer

Mailchimp Error: Bad Request - Your Campaign is not ready to send

I am using following tutorial to create campaign and send email in MailChimp using Php. https://isabelcastillo.com/create-send-mailchimp-campaign-api-3 My Code piece are require_once('../wp-load.php'); function isa_mailchimp_api_request(…
Optimum Creative
  • 1,438
  • 13
  • 21
6
votes
2 answers

How to prevent retrying for some Exception/Error on sidekiq

I have a sidekiq worker which will request 3rd party api(Mailchimp) and got some response. Sometimes it will response an error message which the api gem will raise an error. However, those Errors are normal and no need to retry. So I would like…
Stephen
  • 3,822
  • 2
  • 25
  • 45
6
votes
2 answers

Mailchimp: The API key provided is linked to a different datacenter

I am trying to update a Mailchimp list but receive the following error: { "type":"http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/", "title":"Wrong Datacenter", "status":403, "detail":"The API key provided is linked…
Will
  • 546
  • 5
  • 16
1 2
3
38 39