ID Campaign Mailchimp - Performing Campaign Action

Hi everyone, I need a hand and I hope some of you can help me.

I created a Contact Form 7 automation with addition to an Audience Mailchimp.

Now I would like an Email campaign to be sent to those who are subscribed to the audience through this automation, from mailchimp in fact.

Among the various modules available there is “Perform a campaign Action” which allows you to send email campaigns but asks me to enter the “ID campaign”.

Do any of you know where I can find this ID?

P.S. Sorry for the bad english

@flgisimone There are 2 ways:

  • Make an API call to the following to search for campaigns. It will return the ID:
curl -X GET \
  'https://${dc}.api.mailchimp.com/3.0/campaigns' \
  --user "anystring:${apikey}"'
  • In the mailchimp UI, go to the campaign and click “Details”. In there you will find the url with the campaign ID as well (the first part after https://mailchi.mp/

HOpe this helps you!

1 Like