Questions tagged [mailchimp-api-v3]

45 questions
0
votes
1 answer

Send Email using Mailchimp API

I need to send an email to many recipients var recipients = [1@gmail.com, b@gmail.com, c@gmail.com] I have one template named template1 var templateId = ["237173"]; The text content of one of the block of template vary for every recipient hence…
Code Guy
  • 3,059
  • 2
  • 30
  • 74
0
votes
0 answers

MailChimp campaigns.create(mailchimp)

const campaign = { type: 'regular', recipients: { list_id: '11a07e4453' }, settings: { subject_line: 'New Blog Post: TITLE', from_name:…
0
votes
0 answers

Mailchimp archiving not working with user in multiple audiences

My code loops over a list of Mailchimp audience IDs and makes a call to the Mailchimp API to archive a user in each audience. This works for the first audience, but the second audience gives a 405 Method not Allowed error every time with the…
voodoo-burger
  • 2,123
  • 3
  • 22
  • 29
0
votes
0 answers

MailChimp: set Language with nodejs SDK

I'm trying to set a suscriber's Language with MailChimp nodejs SDK while adding him/her to a list. The nodejs SDK calls the API https://us2.api.mailchimp.com/3.0/lists//members, and it successfully creates a new member. However, it doesn't…
0
votes
0 answers

Are there any ongoing changes in Mailchimp API?

So I am working on Mailchimp API & I've two separate accounts for testing the API out. A request to get members works as expected in one account (dc - us6), but the same request throws an internal server error on another account (dc - us21). Now,…
0
votes
0 answers

Unable to process mailchimp status code using node and express

const { response } = require("express"); const express = require("express"); const https = require("https"); const bodyParser = require("body-parser"); const { url } = require("inspector"); const e = require("express"); const app = express(); const…
0
votes
0 answers

Do we have a batch upload option in mailchimp api?

I have read the doc of mailchimp but couldn't find it. Any help will be appreciated. I am using rails
test user
  • 27
  • 6
0
votes
0 answers

How can I make a Mailchimp form redirect to a URL using the email as a URL variable?

Is there a way to create a mailchimp form that redirects to a URL that takes the email variable of the form submitted? For example the URL would be https://www.examplesite.co.uk/checkout/?EmailAddress=Test@test.com Whereby Test@test.com is email…
0
votes
1 answer

Create An Event and push to MailChimp using MailChimp Net V3

Here's an (php) example of creating an Event and pushing it to MailChimp. Anybody knows how this can be accomplished using C# and MailChimp Net…
Nicke
  • 365
  • 4
  • 8
  • 25
0
votes
1 answer

Update existing contact in Mailchimp

Hello guys I am trying to update a contact in my list with CRUL. I think everything looks great, only one think that I don't understand is {subscriber_hash}. How can i get this? Or maybe thats not a problem I get this…
0
votes
1 answer

How to build own custom drag n drop template in MailChimp?

I want to build my own custom drag and drop templates using MailChimp template language. I didn't find any document or guide related to this. Is it possible to build a custom drag and drop templates in mailchimp? Please help me out with this issue.…
0
votes
1 answer

Posting data to mailchimp’s server via their api

Does anyone know how to post data to mailchimp servers via their api ? Where can I find code examples in the new Website ?
deda
  • 1
0
votes
1 answer

Mailchimp API and mc:repeatable

I'm working with the MailChimp Transactional API but am having an issue populating an email template that uses a mc:repeatable section. I can't find any docs or examples on how to do this. Here is the endpoint im using…
MikeG
  • 3,745
  • 1
  • 29
  • 51
0
votes
2 answers

Trying to add a new member to a MailChimp list results in error 400 ('This value should not be blank')

I am trying to add a new member to a MailChimp list, but I keep getting the following error and can't understand why. { type: 'https://mailchimp.com/developer/marketing/docs/errors/', title: 'Invalid Resource', status: 400, detail: "The…
0
votes
1 answer

Typescript method to get and store MailChimp interests via the API

I'm trying to get my Mailchimp interests by querying the API via an Audience ID; I have created the code below which retrieves everything correctly, however when I display the retrieved data outside the forEach loop, I'm not getting anything…
neophytte
  • 648
  • 2
  • 11
  • 25