admin管理员组

文章数量:1415099

I am trying to implement mailchimp v3. And for that this is the code I am using to get this work. But I don't know what is /lists/id/members and from where I can get that. And thus I am getting this error

Error: The requested resource could not be found.
       at Request._callback (/mailchimp-api-v3/index.js:515:30)

Here is my code

const Mailchimp = require('mailchimp-api-v3')
const mailchimp = new Mailchimp('XXXX-XXXX-XXXX');

mailchimp.post('/lists/id/members', {
  email_address : 'myEmailId',
  status : 'subscribed'
})
.then(function(results) {
  console.log({results})
})
.catch(function (err) {
  console.log({err})
})

I am trying to implement mailchimp v3. And for that this is the code I am using to get this work. But I don't know what is /lists/id/members and from where I can get that. And thus I am getting this error

Error: The requested resource could not be found.
       at Request._callback (/mailchimp-api-v3/index.js:515:30)

Here is my code

const Mailchimp = require('mailchimp-api-v3')
const mailchimp = new Mailchimp('XXXX-XXXX-XXXX');

mailchimp.post('/lists/id/members', {
  email_address : 'myEmailId',
  status : 'subscribed'
})
.then(function(results) {
  console.log({results})
})
.catch(function (err) {
  console.log({err})
})
Share Improve this question asked Sep 4, 2019 at 7:16 ProferProfer 64310 gold badges47 silver badges97 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 3

You need to replace the /(id)/ part with your actual list id, following this official guide.

https://mailchimp./help/find-audience-id/

本文标签: javascriptError The requested resource could not be foundStack Overflow