ButterCMS + Mailchimp -v1
@lelouchb
code:
data:privatelast updated:2 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 800,000+ developers using the Pipedream platform
steps.
trigger
active
last updated:-last event:-
steps.
nodejs
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
}
27
const axios = require("axios")
const client = require("@mailchimp/mailchimp_marketing");

client.setConfig({
  apiKey: '<YOUR-MAILCHIMP-API-KEY>',
  server: '<YOUR-MAILCHIMP-SERVER-PREFIX>',
});

const response = await axios.get('https://api.buttercms.com/v2/posts/'
+ event.body.data.id+'/?auth_token=<YOUR-BUTTERCMS-API-KEY>');

const postData = response.data;

const replicateCampaign = await client.campaigns.replicate('<YOUR-CAMPAIGN-ID>');

const updateCampaign =  await client.campaigns.update(replicateCampaign.id,{
      settings: {
      subject_line: 'New Blog Published -'+ postData.data.title,
      title:'New Blog Published'+ postData.data.title
      }
})

const sendCampaign = await client.campaigns.send(replicateCampaign.id);

return sendCampaign;