Skip to main content
Actions are the steps that execute when a workflow runs. This reference covers all available action types.

Household actions

Actions that work with clients and prospects.

Add tag

Adds a tag to the household.
SettingDescription
TagWhich tag to add

Remove tag

Removes a tag from the household.
SettingDescription
TagWhich tag to remove

Add note

Creates a note on the household.
SettingDescription
ContentNote text (supports variables)

Update household

Updates fields on the household.
SettingDescription
FieldsWhich fields to update and new values

Promote to client

Converts a prospect to a client.
SettingDescription
Set tierOptional: assign a service tier
Only works when the trigger provides a prospect.

Send email

Sends an email to the household.
SettingDescription
ToRecipient (head of household, partner, or specific person)
SubjectEmail subject (supports variables)
BodyEmail content (supports variables and templates)
FromSending user or default

Add to sequence

Enrolls the household in an email sequence.
SettingDescription
SequenceWhich sequence to enroll in
Start at stepWhich step to start from

Remove from sequence

Removes the household from a sequence.
SettingDescription
SequenceWhich sequence to remove from

Start project

Creates a project for the household.
SettingDescription
TemplateWhich project template to use
NameOptional: custom project name
Assigned toWho to assign the project to

Create opportunity

Creates an opportunity for the household.
SettingDescription
NameOpportunity name
ValueOptional: opportunity value
PipelineWhich pipeline (auto-selected based on household type)
StageStarting stage

Task actions

Actions for creating and managing tasks.

Create task

Creates a new task.
SettingDescription
TitleTask title (supports variables)
DescriptionTask details (supports variables)
Due dateWhen the task is due
Assigned toWho to assign the task
PriorityHigh, Medium, or Low
Linked toHousehold, Meeting, or other record

Update task

Updates an existing task.
SettingDescription
TaskWhich task to update (from earlier action)
FieldsWhich fields to update

Add comment

Adds a comment to a task.
SettingDescription
TaskWhich task to comment on
CommentComment text (supports variables)

Opportunity actions

Actions for pipeline management.

Move stage

Moves an opportunity to a different stage.
SettingDescription
OpportunityWhich opportunity to move
StageTarget stage

Add comment

Adds a comment to an opportunity.
SettingDescription
OpportunityWhich opportunity
CommentComment text

AI actions

AI-powered actions for intelligent automation.

Draft email

Uses AI to draft an email.
SettingDescription
PromptInstructions for the AI
ContextWhat information to include
ToneProfessional, Friendly, etc.

Research

Uses AI to search and summarize information.
SettingDescription
QueryWhat to research
SourcesEmails, meetings, notes, web
GuidanceAdditional instructions

Categorize

Uses AI to sort records into categories.
SettingDescription
CategoriesList of possible categories
CriteriaHow to categorize

Filter

Uses AI to decide if the workflow should continue.
SettingDescription
CriteriaConditions to evaluate

Parse and create contact

Extracts contact information from emails or meetings.
SettingDescription
SourceEmail or meeting to parse

Flow control

Actions that control workflow execution.

Branch

Splits the workflow into multiple paths based on conditions.
SettingDescription
ConditionsRules for each branch
DefaultPath if no conditions match

Loop

Repeats actions for a collection of items.
SettingDescription
CollectionWhat to loop over
ActionsWhat to do for each item

Wait

Pauses workflow execution.
SettingDescription
DurationHow long to wait

Filter (non-AI)

Stops the workflow if conditions aren’t met.
SettingDescription
ConditionsRules to evaluate
BehaviorStop or continue if not met

Notification actions

Actions for alerting users.

Internal notification

Sends an in-app notification.
SettingDescription
ToWho to notify
MessageNotification text (supports variables)
LinkOptional: link to include

Confetti

Shows a celebration animation.
SettingDescription
MessageCelebration text
Great for milestone moments like closing deals.

Search actions

Actions for finding records.

Search record

Finds a specific record.
SettingDescription
Record typeWhat to search for
CriteriaSearch conditions
Results can be used in later actions.

Using variables in actions

Most action fields support variables:
Task title: "Follow up with {{household.name}}"
Email body: "Hi {{person.first_name}}, ..."

Available variables

Variables depend on the trigger and earlier actions:
SourceVariables
Triggerhousehold, person, trigger.user
Create tasktask.title, task.due_date
AI researchresearch.summary

Action results

Actions can pass data to later actions:
  • Create task → Task ID, title, link
  • Send email → Email ID, sent status
  • AI research → Research summary
  • Search record → Found record(s)
Access results using the previous_action.result variable syntax.

Best practices

  1. Keep it focused — Each workflow should do one thing well
  2. Use clear names — Task titles and messages should be descriptive
  3. Handle errors — Consider what happens if an action fails
  4. Test thoroughly — Verify each action works as expected
  5. Document — Add notes explaining complex action configurations

Next steps