Actions
Actions are what your automation does when it runs. After your trigger fires and any conditions are evaluated, actions execute the actual work. Open any automation in Automation from the top navigation and click Add Condition, Record or Action to add an action.
Available actions
Send Email
Send email notifications
Learn moreWebhook
Call external APIs and services
Learn moreMutations
Create, update, or delete records
Learn moreUpdate Trigger Record
Modify the triggering record
Learn moreLogger
Log messages for debugging
Learn moreAction types summary
| Action | Purpose | Common use cases |
|---|---|---|
| Send Email | Send email notifications | Welcome emails, order confirmations, alerts |
| Webhook | Call external APIs | Sync with third-party services, trigger external workflows |
| Mutations | Modify database records | Auto-assign values, create related records, cascade updates |
| Update Trigger Record | Modify the triggering record | Set status, update timestamps, increment counters |
| Logger | Log output for debugging | Test automations, audit trails, troubleshooting |
Adding an action
- Click Add Condition, Record or Action below any block.
- Select Action.
- Choose the Action Type in the configuration panel.
- Fill in the action-specific settings.
Using variables in actions
All action fields support variable interpolation. Reference data from:
- Trigger:
{{triggerAlias.field}} - Records:
{{recordAlias.field}} - Variables:
{{variableName}}
Example:
Send Email:
To: {{customer.email}}
Subject: Order #{{order.id}} confirmed
Body: Hi {{customer.name}}, your order is ready!
Multiple actions
Add multiple actions to run in sequence:
Trigger: Order completed
├─ Action: Send Email to customer
├─ Action: Webhook to inventory system
└─ Action: Logger for audit trail
Actions execute in order from top to bottom.
Related
- Send Email — Send email notifications
- Webhook — Call external APIs and services
- Mutations — Create, update, or delete records
- Update Trigger Record — Modify the triggering record
- Logger — Log messages for debugging
- Call On-Demand — Trigger other automations