Reference · Tools
Mailchimp Trigger
Starts workflow when Mailchimp events occur via webhooks
The Mailchimp Trigger fires on audience list events — subscribe, unsubscribe, profile update, email change, cleaned addresses and campaign activity — for the list you configure. A typical build is removing someone from your product's mailing preferences the moment they unsubscribe in Mailchimp.
- Node type
- Webhook trigger
- Parameters
- 3
- Outputs
- Output
- Credentials
- Mailchimp
Mailchimp Trigger
Triggers on Mailchimp list events such as subscribes, unsubscribes, and campaign sends
Overview
Receives webhook notifications from Mailchimp when audience/list events occur, such as new subscriptions, unsubscribes, profile updates, email address changes, cleaned addresses, and campaign sends. Mailchimp webhooks are configured per-list and filter by event type and source (user, admin, API). Mailchimp uses a GET request for webhook URL validation before activating; this trigger handles both the GET validation handshake and POST event delivery. The incoming POST payload contains the event type, fired_at timestamp, and data specific to the event (e.g., subscriber email, merge fields, list info). Useful for automating subscriber onboarding, CRM syncing, list hygiene alerts, and campaign tracking workflows.
Category: Marketing
Tool Name: mailchimp_trigger
Version: 1
Appearance: Icon: si-mailchimp | Color: #ffe01b
Node Type
Trigger — webhook (receives incoming HTTP callbacks)
Input / Output
| Direction | Port(s) |
|---|---|
| Input | None (trigger node) |
| Output | Output |
Credentials
This tool requires Mailchimp credentials. See the Credentials Guide for setup instructions.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| List / Audience ID | string | Yes | — | The Mailchimp audience/list ID that will fire the webhook events. Find this in Mailchimp under Audience > Settings > Audience name and defaults. |
| Events | multiOptions | Yes | [] | Which events to listen for. Select one or more event types. |
Options: campaign (a campaign is sent or cancelled), cleaned (a subscriber address is cleaned from the list), upemail (a subscriber changes their email address), profile (a subscriber profile is updated), subscribe, unsubscribe | ||||
| Sources | multiOptions | Yes | [] | The sources of events that can trigger the webhook. Select one or more sources. |
Options: admin (admin-initiated actions in the Mailchimp web interface), api (actions initiated via the Mailchimp API), user (subscriber-initiated actions) |
Output Data
Each matching Mailchimp event produces one output item:
_trigger— alwaysmailchimp_webhook_timestamp— ISO 8601 timestamp of when the request arrived_webhookEvent— the Mailchimp event type, orunknownwhen the payload does not name onetype— the Mailchimp event type (subscribe,unsubscribe,profile,upemail,cleaned,campaign)fired_at— the timestamp Mailchimp recorded for the eventdata— the event-specific object, for example the subscriber’semail,mergesandlist_id
Any other top-level field Mailchimp sends is merged in alongside these. Events whose type is not in your Events selection are acknowledged without starting the workflow, and Mailchimp’s URL-validation request produces no items. Reference the payload downstream by expression, e.g. {{ $json.data.email }}.
Usage Examples
- Start a workflow when a new subscriber joins a Mailchimp audience
- Trigger a CRM update when a subscriber unsubscribes from a list
- Send a welcome email sequence when a new member subscribes
- Log profile changes when a subscriber updates their information
- Alert the team when a campaign is sent or cancelled
Example Configuration
Fire on new subscribers who signed up themselves:
{
"type": "mailchimp_trigger",
"parameters": {
"list": "abc1234def",
"events": ["subscribe"],
"sources": ["user"]
}
}
Watch list hygiene events from every source:
{
"type": "mailchimp_trigger",
"parameters": {
"list": "abc1234def",
"events": ["unsubscribe", "cleaned", "upemail"],
"sources": ["user", "admin", "api"]
}
}
Track profile edits and campaign sends made through the API:
{
"type": "mailchimp_trigger",
"parameters": {
"list": "abc1234def",
"events": ["profile", "campaign"],
"sources": ["api"]
}
}
Trigger Behavior
- Activation: When the workflow is activated, a webhook endpoint is registered with the service.
- Deactivation: The webhook is automatically unregistered when the workflow is deactivated.
- Payload: The incoming webhook payload is parsed and output as workflow items.
- Verification: Supports signature verification where applicable.
Tips
Entry point that fires when Mailchimp sends a webhook for subscribed list events. Configure the audience list ID, select which events to listen for (subscribe, unsubscribe, profile update, email change, cleaned, campaign), and choose which sources should trigger the webhook (user, admin, API). Mailchimp validates the webhook URL with a GET request before activation; this trigger handles that automatically.
Frequently asked questions
Can I control which sources fire the trigger?
Yes. Choose whether user, admin or API-originated changes should trigger the webhook, so a bulk API import does not flood your workflow with events.
Do I have to verify the webhook URL?
No. Mailchimp validates the URL with a GET request before activation and this trigger handles that automatically.
Which events are available?
Subscribe, unsubscribe, profile update, email change, cleaned and campaign — selected when you configure the trigger.
What identifies the list to watch?
The audience list ID, configured on the trigger. Use a separate trigger per audience.
Build with the Mailchimp Trigger node
Drop it into a workflow, wire it to an agent, or call it on a schedule. You'll need Mailchimp credentials first.
Open BusyBotLast updated . Spotted something wrong? Tell us.