Short answer: Drop the "ActiveCampaign → Deal 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.
Drop it on the canvas. Configure a couple of fields. Publish.
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"}
Every field below can be referenced by name in any action or filter that comes after this trigger.
| Field | Type | Example |
|---|---|---|
| event | string | "deal_update" |
| deal_id | string | "12345" |
| deal_owner | string | "1" |
| deal_stage | string | "2" |
| deal_title | string | "Acme Corp — Q2 expansion" |
| deal_value | string | "7500.00" |
| occurred_at | string | "2026-04-11T10:00:00Z" |
| deal_currency | string | "USD" |
| deal_contact_id | string | "678" |
One trigger. 11+ downstream actions. Zero glue.