Skip to main content
Triggers define when a workflow runs. Each workflow has exactly one trigger. This reference covers all available trigger types.

Event triggers

Event triggers fire when something happens in Slant.

Tag added

Fires when a specific tag is added to a household.
SettingDescription
TagsWhich tags trigger the workflow
Household typeClient, Prospect, or Both
Use cases:
  • Start onboarding when “New client” tag is added
  • Trigger follow-up when “Hot lead” tag is applied

Household created

Fires when a new client or prospect is created.
SettingDescription
Household typeClient, Prospect, or Both
ConditionsOptional filters
Use cases:
  • Welcome email for new prospects
  • Initial task creation for new clients

Prospect promoted

Fires when a prospect is converted to a client.
SettingDescription
ConditionsOptional filters on the new client
Use cases:
  • New client onboarding sequence
  • Celebration notification to team
  • Create client-specific project

Attribute updated

Fires when a specific field changes on a record.
SettingDescription
Record typeWhich type of record to monitor
AttributeWhich field to watch
ConditionsOptional: specific old/new values
Use cases:
  • Alert when AUM crosses a threshold
  • Update tier when client status changes

Email received

Fires when an email is received from a client or contact.
SettingDescription
ConditionsFilter by sender, subject, etc.
Use cases:
  • Auto-create task when client emails
  • Route support inquiries

Record created

Fires when any record of a specific type is created.
SettingDescription
Record typeTask, Meeting, Note, Opportunity, etc.
ConditionsOptional filters
Use cases:
  • Notify team when high-value opportunity created
  • Validate task assignments

Meeting scheduled

Fires when a meeting is added to the calendar.
SettingDescription
ConditionsFilter by meeting type, participants, etc.
Use cases:
  • Create prep tasks for client meetings
  • Send pre-meeting materials

Meeting completed

Fires when a meeting is marked as complete.
SettingDescription
ConditionsFilter by meeting type, participants, etc.
Use cases:
  • Create follow-up tasks
  • Update review due date

Recording finished

Fires when a meeting recording finishes processing.
SettingDescription
ConditionsOptional filters
Use cases:
  • Notify that recording is ready
  • Trigger transcript processing

Schedule triggers

Schedule triggers run on a regular basis.

Recurring

Runs on a schedule (daily, weekly, monthly).
SettingDescription
FrequencyDaily, Weekly, or Monthly
TimeWhat time to run
DayWhich day (for weekly/monthly)
Use cases:
  • Daily task summary
  • Weekly pipeline review
  • Monthly billing reminders

Date reminder

Fires relative to a date field (before, on, or after).
SettingDescription
Date fieldBirthday, anniversary, review due, etc.
OffsetDays before or after the date
Record typeWhich records to check
Use cases:
  • Birthday reminders (7 days before)
  • Review due reminders (1 week before)
  • Anniversary acknowledgments

Manual triggers

Manual triggers are activated by user action.

Magic button

Appears as a button on household records. Runs when clicked.
SettingDescription
Button labelWhat the button says
Record typesWhere the button appears (Client, Prospect, Meeting)
IconVisual icon for the button
Use cases:
  • Quick actions like “Schedule review”
  • On-demand processes like “Generate report”
  • Ad-hoc workflows like “Send thank you”

Trigger conditions

Most triggers support conditions to filter when they fire:

Add conditions

1

Select the trigger

Click on the trigger node.
2

Find conditions

Look for Conditions or Filters in properties.
3

Add a condition

Click Add condition.
4

Configure

Select field, operator, and value.

Condition operators

OperatorDescription
EqualsExact match
Not equalsDoes not match
ContainsText contains value
Greater thanNumber/date comparison
Less thanNumber/date comparison
Is emptyField has no value
Is not emptyField has a value

Multiple conditions

Combine conditions with AND/OR logic:
  • AND — All conditions must be true
  • OR — Any condition can be true

Trigger data

Each trigger provides data that actions can use:
TriggerProvides
Tag addedHousehold, Tag, User who added
Household createdHousehold, Creator
Prospect promotedClient (formerly prospect), User
Meeting scheduledMeeting, Household, Scheduler
Magic buttonHousehold, User who clicked
Access this data in actions using variables like household.name.

Best practices

  1. Be specific — Use conditions to avoid running on unwanted records
  2. Test first — Verify triggers fire when expected
  3. Consider volume — High-frequency triggers can create many runs
  4. Document — Note why the trigger was chosen
  5. Review periodically — Ensure triggers still match your needs

Next steps