Skip to content

Instantly share code, notes, and snippets.

@SilencerWeb
Created February 9, 2019 05:02
Show Gist options
  • Save SilencerWeb/b13712696935cdd1f97486d17bc29514 to your computer and use it in GitHub Desktop.
Save SilencerWeb/b13712696935cdd1f97486d17bc29514 to your computer and use it in GitHub Desktop.
axios({
method: 'post',
url: `https://us19.api.mailchimp.com/3.0/lists/${listId}/members/`,
data: JSON.stringify({
email_address: '[email protected]',
status: 'subscribed',
}),
headers: {
Authorization: `Basic ${Buffer.from(`apikey:${API_KEY}`).toString('base64')}`,
'content-type': 'application/json',
},
})
.then((response) => console.log(response))
.catch((error) => console.log(error));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment