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

How to integrate MailChimp API in Bootstrap contact form

I've used this tutorial to build a contact form using the Bootstrap framework. However, with literally no knowledge of PHP, I'm having difficulty implementing a MailChimp API with validation. I've found a MailChimp API tutorial, but am not able to…
2
votes
1 answer

Add subscriber to automation multiple times in MailChimp

I've a MailChimp Automation for an custom e-commerce. I want to use my MailChimp Automation Workflow to send information to customers when they have placed an order. Overview: Send order information Send mail #2 after 2 days This works great, but…
mr3k
  • 188
  • 3
  • 17
2
votes
1 answer

Creating campaign for dynamic TextMerge segment fails

I'm trying to send a campaign to a dynamic list segment based on a custom numeric merge field (GMT_OFFSET, in this case) but the code below yields the following error from the MailChimp API: "errors" => [ 0 => [ "field" =>…
oscaralexander
  • 307
  • 2
  • 11
2
votes
1 answer

Send email notification when a new subscriber joins list via Mailchimp API

I'm trying to receive an email notification when a user signs up to my mailing list. It's a simple form integrated with the Mailchimp API however I do not receive an email when a user signs up, nor does the user get a "welcome" email. I believe it's…
Karl Taylor
  • 4,839
  • 3
  • 34
  • 62
2
votes
1 answer

Trigger automation if certain merge fields are completed?

I'm looking to trigger an automation if the user enters additional information about themselves (i.e. Date of Birth and State). Is it possible to trigger an automation if the user adds these details and updates in the Preference Centre? Mailchimp…
2
votes
2 answers

Vue-Request not sending Authorization Header

I'm using VueJS with vue-request for http requests. I'm trying to subscribe an user to a Mailchimp list but Mailchimp uses BasicAuth, so I'm doing as such: …
2
votes
1 answer

Mailchimp api how to get member source

I need to find out which user added to list manual, or via api. We are using v3 api of Mailchimp. With members endpoint POST /lists/{list_id}/members We get info about members, but there is no way to get a source. So how get members source…
Vahe Galstyan
  • 1,681
  • 1
  • 12
  • 25
2
votes
1 answer

Mailchimp api to subscribe using java script request issue

I am trying below javascript code to subscribe on mailchimp. flow wise working good but i am getting error like not authorize because may be i am not passing api key correctly. please help to solve my issue var request = new…
amit nindroda
  • 65
  • 3
  • 11
2
votes
1 answer

Add a member using python requests and Mailchimp API v3

I am trying to learn more about using http requests and the Mailchimp API, but I cannot seem to figure out how to add a member to list using a post request. I have tried multiple configurations, and I guess I made some headway since my response…
Fraxr
  • 125
  • 2
  • 10
2
votes
2 answers

Send POST request to mailchimp API with Python

I am trying to send a POST request to the mailchimp api to add a new member to a list, but I keep getting an error saying that the api key is missing. When I send a get request I include the key in the URL and it works normal. From the Mailchimp…
edgar piet
  • 67
  • 3
  • 11
2
votes
1 answer

Mailchimp double_optin => false not working in mailchimp-api-ruby

I am trying to use the gem mailchimp-api-ruby to add users to a list. But when i use mailchimp.lists.subscribe it sends an email to the users asking them to confirm before they end up in the list. I know that double_optin => false should fix this…
2
votes
4 answers

I want to integrate mailchimp with wordpress without using plugins

I have used this after my form.But my entry does not go to the mailchimp account. Please tell me if anything missing. Please refer the below code.
Priya2026
  • 87
  • 1
  • 2
  • 7
2
votes
5 answers

Get All List Members - MailChimp 3.0

I'm trying to get all the members in my list (around 19,000 members) and am using the Mailchimp.NET.V3 package in C#. The following code only retrieves the first 1000 members IMailChimpManager MC = new…
Brendan Gooden
  • 1,460
  • 2
  • 21
  • 40
2
votes
1 answer

Mailchimp webhook - manually subscribing and unsubscribing

My webhook is working fine. During testing, when I manually unsubscribe a user, the webhook fires. However, when I manually resubscribe that same user, nothing happens. I've tested this; manual unsubscribes fire, manual subscribes do not. What's…
nmit026
  • 3,024
  • 2
  • 27
  • 53
2
votes
2 answers

Python: Adding subscribers to mailchimp with bulk API V3

Im trying to write a function to create subscribers in mailchimp, but I get an error, and I can't understand what is wrong. Im using python-mailchimp (And yes, I have mye correct list-id and not 000000) My code: from mailchimp3 import MailChimp def…
Tomas Jacobsen
  • 2,368
  • 6
  • 37
  • 81