Brevo - Add to contact list

Hello. Is there a way to add a contact to a contact list on Brevo?

My automation first creates a contact, then it should be added to a specific contact list.

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hi @mcdonnel,

You might need to make a custom API call in that case to include the listIds field in the request body:

{
  "email": "[email protected]",
  "attributes": {
    "FIRSTNAME": "John",
    "LASTNAME": "Doe"
  },
  "listIds": [1, 2]  // Replace with your actual list IDs
}

Would be good to have an action instead of relying on custom api call. How can we submit a request for this? Mailchimp and Activecampaign have an “add to list” action…

Hi @Station,

Welcome to the community :tada: You can create a feature request in the Feature Request section of the forum and upvote :slight_smile:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.