Trigger Components
Triggers are the starting point of every automation. They define when your automation runs by listening for specific events in your Statisfy data.How Triggers Work
When a trigger event occurs:- The trigger component receives the event with the entity ID
- It loads the full entity data from the database
- It establishes the Flow Context with entity information
- It outputs a Data object containing the entity details
- Connected downstream nodes begin executing
Every automation must have exactly one trigger. You cannot have multiple triggers or start an automation without one.
Account Segment V2
Triggers when an account enters or exits a specified segment.When to Use
- Alert when accounts become at-risk
- Notify when accounts qualify for upsell
- Take action when account criteria change
Configuration
Output Data
Flow Context
Setsaccount_id (the account identifier) and account_data (the full account object) for downstream nodes. Use @account_id to reference the ID and @account_data.field_name to access account properties.
Task Segment V2
Triggers when a task matches specified criteria or enters a segment.When to Use
- Alert when tasks become overdue
- Notify when high-priority tasks are created
- Escalate tasks based on criteria
Configuration
Output Data
Flow Context
Setstask_id (the task identifier), task_data (the full task object), account_id (the associated account identifier), and account_data (the associated account object) for downstream nodes. Use @task_data.field_name to access task properties and @account_data.field_name for account properties.
User Segment V2
Triggers when a user/contact enters or exits a specified segment.When to Use
- Alert when a champion leaves
- Identify new power users
- Track user engagement changes
Configuration
Output Data
Flow Context
Setsuser_id (the user identifier) and user_data (the full user object) for downstream nodes. Use @user_id to reference the ID and @user_data.field_name to access user properties.
Contact Segment V2
Triggers when a contact matches specified segment criteria.When to Use
- Identify key stakeholders
- Track contact engagement
- Alert on contact role changes
Configuration
Output Data
Similar to User Segment, contains contact details including name, email, title, and associated account information.Opportunity Segment V2
Triggers when an opportunity enters or exits a segment.When to Use
- Alert on deal stage changes
- Notify when opportunities become at-risk
- Track expansion opportunities
Configuration
Output Data
Field Change
Triggers when one of the custom field values you’re watching changes on a record. Unlike segment triggers (which fire when a record enters or exits a segment), Field Change fires on the edit itself — so you can react to a specific field being updated, regardless of whether the record’s segment membership changed. This trigger comes in three entity variants:- Account Field Change — watches custom fields on accounts
- Contact Field Change — watches custom fields on contacts
- Opportunity Field Change — watches custom fields on opportunities
When to Use
- Run an automation when a specific custom field is edited (e.g., “Renewal Stage”, “Onboarding Status”)
- Sync a field change out to an external system via an API Call
- Notify an owner when a watched field flips to a particular value
Configuration
Output Data
Account Field Changeaccount_id and account_data:
changed_fields is the subset of your watched Field Keys that actually changed on this event — use it to branch (e.g., a Condition that checks whether a particular key is in the list).
Flow Context
Sets the entity ID and data for the triggering record (account_id/account_data, contact_id/contact_data, or opportunity_id/opportunity_data). The Contact and Opportunity variants also set the linked account_id and account_data. Reference values downstream with @account_data.field_name, and use @changed_fields to access the list of changed keys.
Field Change triggers fire on every matching edit — they do not use the Expiration Days re-trigger window that segment triggers have. Narrow the Field Keys (and optionally the Segment) to avoid running the flow more often than you intend.
Process Activity V2
Triggers after a customer activity is processed by Statisfy’s activity engine.When to Use
- React to specific customer activities
- Trigger workflows based on engagement
- Process activity-driven automations
Configuration
Output Data
Flow Context
Setsactivity_id (the activity identifier), activity_data (the full activity object), account_id (the associated account identifier), and account_data (the associated account object) for downstream nodes. Use @activity_data.field_name to access activity properties and @account_data.field_name for account properties.
Activity Segment V2
Triggers when activities match segment criteria.When to Use
- Monitor for specific activity patterns
- Alert on activity anomalies
- Track engagement thresholds
Configuration
Meeting Segment V2
Triggers when meetings match specified criteria.When to Use
- Follow up after customer meetings
- Track meeting frequency
- Alert on missed meetings
Configuration
Output Data
Contains meeting details including participants, time, duration, and associated account information.Upcoming Meeting V2
Triggers for calendar events that are about to happen (e.g., one hour before a meeting starts). Use this to drive meeting-prep workflows that need to run before the meeting, not after it.When to Use
- Generate a meeting briefing for the account owner an hour before the call
- Post a Slack reminder with attendees and recent activity
- Create a follow-up task ahead of a renewal meeting
Configuration
Output Data
Flow Context
Setsid (the calendar event identifier), event_data (the full event object), account_id (the linked account identifier), and account_data (the linked account object) for downstream nodes.
Project Segment V2
Triggers when a project enters or exits a segment.When to Use
- Alert on project health changes
- Track implementation progress
- Monitor onboarding projects
Configuration
Output Data
Contains project details including name, status, tasks, and associated account information.Scheduler V2
Triggers on a scheduled time basis (cron-style scheduling).When to Use
- Run daily/weekly reports
- Periodic data updates
- Scheduled batch operations
Configuration
Output Data
Scheduler triggers don’t have entity context. You’ll need to use processing nodes to fetch the data you need.
Re-Trigger Window (Expiration Days)
Most segment triggers (Account, Contact, Task, User, Opportunity, Activity, Project, Upcoming Meeting) expose an Expiration Days setting. It controls how long Statisfy waits before allowing the same entity to trigger the same flow again.
Use a longer window for high-noise segments (e.g., “Health < 50”) to avoid spamming the same account every day. Use
0 for one-shot lifecycle events like “Account created.”
Common Trigger Patterns
Pattern: Segment + Condition
Combine segment triggers with conditions for fine-grained control:Pattern: Multi-Entity Context
When you need data from multiple entities:Pattern: Scheduled + Data Fetch
For scheduled operations that need entity data:Next Steps
Action Components
Learn about actions you can take
Processing Components
Transform and manipulate data