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

Let Mailchimp send daily summary when adding contacts with mailchimp API

Mailchimp doesn't seem to send a daily summary of subsribers when they are added by the mailchimp API. Is there an option or someting in the API to enable this?
waterschaats
  • 994
  • 3
  • 18
  • 32
0
votes
1 answer

How to create a store and get store id in mail chimp for drupal commerce?

I need store id(store_id) to pass the value in this API. /ecommerce/stores/{store_id}/carts
Kiran Kumar
  • 163
  • 1
  • 4
  • 15
0
votes
1 answer

Get "API key is missing" error when querying account details to Mailchimp API 3.0 using RestSharp

When using RestSharp to query account details in your MailChimp account I get a "401: unauthorized" with "API key is missing", even though it clearly isn't! We're using the same method to create our RestClient with several different methods, and in…
0
votes
1 answer

How to re-structure the below JSON data which is a result set of SQL query using cursors in python

def query_db(query, args=(), one=False): cur = connection.cursor() cur.execute(query, args) r = [dict((cur.description[i][0], value) for i, value in enumerate(row)) for row in cur.fetchall()] cur.connection.close() return (r[0] if r else…
Yaswanth Kumar
  • 459
  • 1
  • 4
  • 10
0
votes
1 answer

Mailchimp 3.0 - Create campaign with interests - wrong number of selected members

I created a new campaign using interests. Creation is ok but when checking the campaign on Mailchimp, the number of selected members is 0 (but this is wrong). If I open the recipients tab and go back to the confirm tab (without modifying anything in…
Vénizia
  • 581
  • 5
  • 14
0
votes
1 answer

How to count MailChimp list members with status "pending" via MailChimp API 3?

It could return the emails associated with "status": "pending" or just the number of accounts with status pending for that list. I'm just interested in knowing how many signups fall off as a result of the double opt in process. I was able to test…
0
votes
0 answers

Mailchimp API get embedded form code

I have searched the mailchimp API for embedded and there are no results. I have also googled and stackoverflowed, the closest I can get is this question related to the templates. The only thing that comes close is the signup forms which gives me a…
Isaac
  • 11,409
  • 5
  • 33
  • 45
0
votes
2 answers

Mailchimp No Host Exception when Subscribing Email to A List

I'm trying to send a subscription call, but got an error saying the the URL is invalid. This is the URL I used: https://us14.api.mailchimp.com/3.0/lists//members/ then I get this back in the response: …
juminoz
  • 3,168
  • 7
  • 35
  • 52
0
votes
2 answers

Mailchimp API v3.0 "status":"subscribed" always results in "status":"pending"

I am trying to subscribe a user to a list using the Mailchimp API and for some reason it keeps submitting the status as "pending" even though I have it set to "subscribed". I am trying to directly subscribe the user without prompting the…
0
votes
1 answer

Cannot get existing subscriber on List using MailChimp API V3.0 and PHP

Am trying to build a download library where users subscribe through MailChimp so they can download file as member, I would like to confirm the user email before generating download link else add the new email entered by the user to mailing list, I…
0
votes
1 answer

Mailchimp like email templates for individual email / transactional email

Please, see the screenshot (of an email) that I received for my transaction. I would like to create the similar email template for the users who interact on my site. I really like mailchimp and it is email templates. But I cannot send a…
0
votes
1 answer

Mailchimp list post members

I am testing Mailchimp API 3.0 to add some members to a specific list. The post request to add new members works great. But if I go to MailChimp website and go to list tab I don't see members in list and I don't send campaign and after again click…
0
votes
1 answer

Trying to make GET request to Mailchimp with CURL & OAuth?

Everything I look at online is showing how to use OAuth & Curl to make a POST request, but I want to make a get request to the Mailchimp API and I'm not getting any response it seems. I've already managed to go through the authentication and get the…
user3404153
  • 63
  • 1
  • 7
0
votes
2 answers

Alamofire Mailchimp API 3.0 subscribe

I am trying to subscribe new user to Mailchimp list using Alamofire. Problem starts when I'm trying to subscribe new user with .post method and JSONObject as a parameter: func subscribeMail(){ let credentialData = "".data(using:…
MOzeb
  • 423
  • 1
  • 6
  • 14
0
votes
1 answer

Using mailchimp API in Laravel 5.2

I want to send mail to my all users with his blog post using mailchimp API in laravel 5.2. And application will send mail frequently 30 minutes later after. How will I solve it?
habib
  • 463
  • 3
  • 16