Skip to content
TriggerActiveCampaignReal-timeUpdated May 2026

When does ActiveCampaign emit a deal-changed event?

Short answer: Drop the "ActiveCampaignDeal Updated" trigger on your workflow canvas, add filters if you want them, and publish. It fires within seconds of the event in ActiveCampaign, not on a polling schedule.

Anatomy

What this trigger looks like in a workflow.

Drop it on the canvas. Configure a couple of fields. Publish.

In the builder
Trigger
Deal Updated
When the matching event happens
deal updatedon deal updatedwhen deal updatedwatch for deal updateddeal changedwhen a deal is updated in activecampaign
What this trigger returns
for the curious

You don’t need to read this. Tiny Command auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.

{
"event": "deal_update",
"deal_id": "12345",
"deal_owner": "1",
"deal_stage": "2",
"deal_title": "Acme Corp — Q2 expansion",
"deal_value": "7500.00",
"occurred_at": "2026-04-11T10:00:00Z",
"deal_currency": "USD",
"deal_contact_id": "678"
}
Output shape

Fields available to downstream nodes.

Every field below can be referenced by name in any action or filter that comes after this trigger.

FieldTypeExample
eventstring"deal_update"
deal_idstring"12345"
deal_ownerstring"1"
deal_stagestring"2"
deal_titlestring"Acme Corp — Q2 expansion"
deal_valuestring"7500.00"
occurred_atstring"2026-04-11T10:00:00Z"
deal_currencystring"USD"
deal_contact_idstring"678"
FAQ

Questions about Deal Updated.

How does the Deal Updated trigger work in ActiveCampaign?
Fires on any change to an existing deal — stage transition, value change, owner reassignment, custom-field edit. For stage-specific reactions (e.g., only fire on "moved to Negotiation"), the workflow needs to inspect the payload's stage field and short-circuit when the change doesn't match.
Is the Deal Updated trigger real-time?
Yes. Deal Updated uses webhooks or push subscriptions, not polling. Your workflow fires within seconds of the event happening in ActiveCampaign.
What data does Deal Updated return?
The full event payload from ActiveCampaign. The output shape table on this page lists every field, its type, and an example value so you can map fields into downstream nodes.
Can I filter Deal Updated so only some events start a workflow?
Yes. Add a Filter node right after the trigger and match on any field, whether that's subject, sender, status, or anything else in the payload. Workflows only continue when the filter passes.
Do I need ActiveCampaign admin permissions to use Deal Updated?
For most ActiveCampaign accounts a standard user can authorize the trigger. Some ActiveCampaign plans require an admin to enable third-party webhooks. Check ActiveCampaign's docs if the trigger fails to register.
More triggers

Other ActiveCampaign triggers.

Build a workflow on this trigger.

One trigger. 11+ downstream actions. Zero glue.