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
2 answers

Node.js HTTP Get Request to Mailchimp Returns Error

Whenever I run the following curl code, my request to the Mailchimp 3.0 API goes through just fine: curl --request GET \ --url 'https://us12.api.mailchimp.com/3.0/' \ --user 'anystring:APIKEY' However, whenever I make a request to the API using…
10000RubyPools
  • 1,182
  • 3
  • 11
  • 24
0
votes
1 answer

Tracking Opens using MailChimp API V3

I'm looking to replicate the functionality of this call in V3 of the MailChimp API: https://apidocs.mailchimp.com/api/2.0/reports/opened.php Is there a way to track campaign opens for an email address in V3? I've been trying the…
L Martin
  • 1,180
  • 8
  • 18
0
votes
1 answer

Get 400 Bad Request when calling MailChimp API 3.0 using CURL request in Windows cmd

I'm working with MailChimp API v3.0 and I need to create a new Segment, based on the MailChimp API documentation: http://developer.mailchimp.com/documentation/mailchimp/reference/lists/segments/ It's not working in my C# API Wrapper and I´m using…
nolramlinux
  • 1
  • 1
  • 3
0
votes
0 answers

MailChimp API v3.0 Json Parse Error

When I try update store (Patch) I get an error in the response: { "type":"http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/", "title":"JSON Parse Error", "status":400, "detail":"We encountered an…
0
votes
1 answer

How to extract specific fields in BATCH using Mailchimp API v3 for GET method?

I am trying to GET information(specific fields from email-activity), how should I do it in Batch GET requests in Mailchimp api v3? This is my code - { "operations": [ { "method": "GET", "path": "/reports/campaign_id/email-activity", …
frant
  • 27
  • 1
  • 9
0
votes
3 answers

MailChimp Integration in Java

I want to integrate MailChimp API in my java project. When I call Rest call using HttpURLConnection class, it responds with 401 code. Here is my code: URL url = new URL("https://us13.api.mailchimp.com/3.0/lists"); HttpURLConnection conn =…
user3759750
  • 123
  • 3
  • 10
0
votes
1 answer

Limit to extracting details(like email-activity) using Mailchimp API v3 through R and cURL?

I cannot extract email-activity of more than 5000 people for a particular campaign using Mailchimp API v3 through R or cURL. Is there a limit for the same or is there a better way to extract data of more than 5000 people for a campaign through API ?
frant
  • 27
  • 1
  • 9
0
votes
1 answer

How to find people who clicked on a specific campaign using Mailchimp API v3

How do I find the list of all people who clicked on a specific campaign through Mailchimp API v3?
frant
  • 27
  • 1
  • 9
0
votes
1 answer

Extracting data from Mailchimp API v3

Is there a way for me to get(through Mailchimp API) the list of all the people who opened a particular campaign and the list of all the people who clicked on a particular campaign, etc ?? I want the required data campaign-wise because we send about…
frant
  • 27
  • 1
  • 9
0
votes
1 answer

Get all mailchimp campaign's details using only one call to MailChimp API v3

Can I get all mailchimp campaign's details hitting the api only one time instead of hitting the api for each of the campaign ? if yes, how ? only using mailchimp api v3.0
0
votes
1 answer

Always get 404 error when adding ecommerce orders using Mailchimp API 3.0

We're updating our Mailchimp implementation from 1.3 to 3.0. We succesfully updated our code to subscribe someone to a list. Now we're trying to add an ecommerce order. In API v1.3 we did this with the function campaignEcommOrderAdd. I found the…
ZoFem
  • 309
  • 4
  • 20
0
votes
4 answers

Mailchimp Restful API 3.0 in Node.js always Resource not Found

I'm trying to hit one of the mailchimp's api, but for somehow I always get { "type": "http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/", "title": "Resource Not Found", "status": 404, "detail": "The requested…
airsoftFreak
  • 1,450
  • 5
  • 34
  • 64
0
votes
0 answers

How to get list of contact info from mailchimp?

Is there anyway to get the list of contact details from mailchimp using ecwid-mailchimp api? ListMembersMethod li = new ListMembersMethod(); li.apikey = apikey; li.id = listId; li.limit = (int) memberCount; ListMembersResult execute =…
Gaurab Pradhan
  • 281
  • 1
  • 5
  • 14
0
votes
1 answer

API key is always missing when I try to access MailChimp's api using Retrofit

I'm sure this is a non issue for someone who knows what they're doing, but this is my first time using MailChimp's api and retrofit. Basically, my api key is always missing. I have no idea what MailChimp's proper url looks like when you are…
albert kim
  • 333
  • 2
  • 14
0
votes
1 answer

How can I get member information by using API V3.0 from MailChimp?

I'm looking for way how to grab a specific member/user information by using his email address. Is there any documentation or example? I'm using MailChimp API V3.0. I have tried to execute the following code but without any success: curl --request…
remram
  • 193
  • 1
  • 5