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
1
vote
1 answer

Form submission and mailchimp api in nextjs

I made a form that sends the input data to the Mailchimp audience list with their API. The issue I'm having is that my form takes two inputs, a user's firstname, and email, and upon submission of the form only the email input gets sent to Mailchimp…
1raf
  • 57
  • 4
1
vote
1 answer

How to add a member to the list in a mailchimp api using node.js?

I am doing "Angela Yu" bootcamp for Web Dev, where you make a web app to add a member to you maillist. When the user enters their the details to the Info Page and click submit, the user should be added to the mail list using mailchimp api. I have…
gaurav jha
  • 11
  • 1
1
vote
0 answers

Mailchimp API 3.0 how to detect already unsubscribed

The Mailchimp API returns error 400 if I try to subscribe a user that is already subscribed. Then I found that if I unsubscribe and attempt to resubscribe again I also get error 400. Is there a way to differentiate between these cases? Mailchimp's…
chillywilly
  • 405
  • 3
  • 11
1
vote
1 answer

How to extract from response url in Mailchimp Batch Operations in Python?

I am requesting data via Mailchimp Marketing API using Batch Operations. I receive a response_body_url which once clicked, downloads gzipped files locally. A GET request to the response_body_url returns a gzipped tar archive of JSON files. But I…
1
vote
0 answers

Automating daily downloads of MailChimp Data - Batch API too slow for large recordsets

I am trying to automate a daily download of MailChimp data. I have written a script that downloads successfully using API v3.0 through both regular/synchronous and batch/asynchronous requests. Unfortunately, the process is so slow that I can't…
bkgraham
  • 110
  • 1
  • 11
1
vote
3 answers

Error on getting member details from mailchimp in woocommerce using Mailchimp API

I am trying to ingrate mailchimp API API link with woocommerce. I am trying to add user in mailchimp. Before adding the user in mailchimp list , i searching the user with getListMember method if user is not present in mailchimp list , i will add the…
Siddharth
  • 99
  • 10
1
vote
0 answers

PHP Mailchimp API v3 , passing arguments other than fields ignored

I cannot get the mailchimp api to return more than 10 items or "see" any query parameters. The documentation lists the query parameters allowed but never shows an example, in php. //boilerplate $client = new MailchimpMarketing\ApiClient(); …
ravenshill
  • 309
  • 2
  • 8
1
vote
0 answers

how to set up mailchimp and get ping everything chimpy?

I been trying to get mailchimp with my react project but for the love of me just can't. I don't know why I can't get the ping and despite having the node module installed, it tells me it isnt. im using these docs -…
someone
  • 661
  • 1
  • 9
  • 26
1
vote
1 answer

How to send a transactional email with attachment with Google Apps Script and Mailchimp API

I am trying to figure out how to send attachments in transactional emails with Mailchimp. According to the documentation, the attachments array must contain objects with type, name and content properties. The one that I can't figure out is content.…
1
vote
1 answer

Adding Mailchimp members as "Not-Subscribed" through API

In this article: https://mailchimp.com/help/about-your-contacts/ it lists the status options as: Subscribed Unsubscribed Not-Subscribed Cleaned By passing in "subscribed" or "unsubscribed" as the status, this will update, however I cannot find a…
Sami.C
  • 561
  • 1
  • 11
  • 24
1
vote
0 answers

MailChimp MergeTags CSS/HTML - Change color depending on character in string

I'm sending daily newsletters with Mailchimp and use "merge tags" extensively. I fill the defaults of the merge tags with a python script via API. I add a bar with the stock market moves of yesterday - the data I have in python. I struggle with…
UrsK
  • 11
  • 1
1
vote
1 answer

Bulk update mailchimp tags via API in BATCH process not working

I am using DrewM Mailchimp API v3. I tried to bulk update tags of my existing contacts using "BATCH" process and it is not working. Can anyone help me out? Attaching the code snippet for reference. I tried with both "PUT" and "PATCH". But both are…
Ash
  • 21
  • 2
1
vote
2 answers

How can I update subscriber tags using mailchimp3 for Python?

I am trying to update the tags for members of a MailChimp list using the mailchimp3 package/API on a regular basis using purchase data from an external source. The tags need to be updated weekly based on recent purchases by customers. Sample data is…
1
vote
1 answer

mail chimp subscription not working with django

Hi everyone I integrate my Django Web app with mail chimp . in my admin panel when I open marketing preference it give me error . and it do not subscribe my users when I click on subscribe my user remain unsubscribe when i hit save .the error I got…
Huma Qureshi
  • 121
  • 1
  • 11
1
vote
1 answer

adding tag on mailchimp via api replies success but no tags are added

Here's my method to add tags to an existing Mailchimp subscriber: def self.add_tag_on_mailchimp(email,tag) begin mailchimp = MailchimpMarketing::Client.new mailchimp.set_config({ :api_key =>…
wachichornia
  • 1,178
  • 14
  • 31