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

Allow my SAAS user install MailChimp on their store

We are building SAAS platform like Shopify. Now we would like our customers to install MailChimp on their store just like Shopify customer installs on their store. When I was trying MailChimp on Shopify platform, i noticed somehow Shopify receives…
Abhimanyu
  • 2,173
  • 2
  • 28
  • 44
0
votes
1 answer

Post PHP Session via Curl (Mailchimp API)

I'm trying to update subscribers automatically to a Mailchimp list. I can update the list using a string from a form etc. However the e-commerce site I'm working on already has an email address stored in the session which I need to use but it's lost…
E Wilson
  • 125
  • 2
  • 10
0
votes
0 answers

how to integrate the mailchimp with core php

I need to integrate the mail chimp api with core php I tried more type of codes but not working. Finally, I found the below code. I have created an api key with mailchimp, likewise campaigns, template and list in the mailchimp.
0
votes
1 answer

how to send individual mail using python with mailchimp

I want to send mail using MailChimp. Like when user register then I want to send username and password email to the user with MailChimp. I have developed the website in Django 1.8. I also want to use MailChimp template in my Django application. I…
Piyush
  • 511
  • 4
  • 13
0
votes
1 answer

cannot initialize mail chimp API in python 3

I am trying to learn the mail chimp API in python 3, but I cannot get it started. from mailchimp3 import MailChimp client = MailChimp('MY-USERNAME’,‘MY-API') (obviously I swapped out my username and api key for this example) Traceback (most…
Fraxr
  • 125
  • 2
  • 10
0
votes
1 answer

Python 2.7 Mailchimp3 401 status "API Key is missing"

I am currently trying to make a call using mailchimp3: client.reports.email_activity.all(campaign_id = '#######', getall=True, fields = '######') When I call large amounts of email data I get the 401 status error. I am able to call smaller amounts…
0
votes
1 answer

sending mailchimp campaign with maleorang v3.0 java api

I have gotten so far that I can create a new campaign in my campaign list in mailchimp using a java class, however, I am not getting there to send it, see code, does anyone have suggestions? it executes the creation of the campaign (and i see it in…
0
votes
1 answer

Mailchimp - how to tell when a user's status is set to pending

I'd like to be able to tell in my webhook when a user's status is set to pending. Setting a user's status to pending triggers a Profile Update event, but as far as I can see there is nothing in the form values posted to my webhook about the user's…
nmit026
  • 3,024
  • 2
  • 27
  • 53
0
votes
1 answer

How to map the provide product ID in to the mailchimp account list?

This is my input json { "id": "11378", "customer": { "id": "112", "email_address": "freddie@freddiesjokes.com", "opt_in_status": true, "company": "SKU projects", "first_name": "firstname", "last_name": "lastname", …
Kiran Kumar
  • 163
  • 1
  • 4
  • 15
0
votes
3 answers

How do I display list of email id From mail chimp API version 3?

I have Update the particular list id with email subscription and now i want to extract all that email id and want to check if that particular email id is already exist or not and show message "email is already exist" and if not then insert that…
Ajay Paudel
  • 322
  • 1
  • 12
0
votes
1 answer

mailchimp unsubscribe with node js server

i have a problem with mailchimp unsubscribe process. Please can you provide me the way for unsubscribe process. How exactly put in unsubscribe list and what files i should request. And how i know the differences that the email should be put in…
0
votes
2 answers

PHP Notice: Undefined index: when syncing form submission to mailchimp list

I have developed a wordpress plugin which is a form builder. The plugin allows users to enter a list ID, API ID, First Name, Last name and Email address variable in order to sync form submissions to a chosen mailchimp list when the form is…
Sam Skirrow
  • 3,647
  • 15
  • 54
  • 101
0
votes
1 answer

Ionic2 Mailchimp API. Angular2 not post anything

So the thing is I'm currently working on a mobile app with ionic2 and I have to use Mailchimp for subscriptions. I write a php file which handle the API and upload it on a server. The API is works fine with the static email that I write in it so…
Máté Nagy
  • 125
  • 8
0
votes
1 answer

using MailChimp API without cURL

I'm trying to use the MailChimp API to add subscribers to a list once they've checked a box on a form. I can do this with cURL, and it works fine, but the server that this will be on does not have it enabled. I'm trying to use file_get_contents(),…
Ezra
  • 75
  • 6
0
votes
1 answer

How to async task and Mailchimp API v3.0

I am trying to get from MailChimp a MailChimp List Collection. I have set up the process as displayed in the example on MailChimp.net for getting all lists but it exits out before the list is returned unless I use a Console read after the task is…