Creating automations
Build workflows that run automatically when events occur. This guide creates a simple automation that logs new user emails. Automations consist of triggers, blocks, and actions — start with a trigger, add logic if needed, then define actions.
note
New to the automation builder? See the Interface Guide to learn about status indicators, drag-and-drop controls, and the data source picker.
Step-by-step setup
-
Go to automation
- Click Automation in the top navigation.
- Click + Add to create a new automation.
-
Set up the trigger
- Click the Trigger block.
- Set Trigger Type to "When record created".
- Select your Users collection.
- Set Table Alias to
user.
-
Add action
- Click Add Condition, Record or Action.
- Select Action.
- Choose Logger action.
- Set Log Type to "Log Variable".
- Enter
{{user.email}}in Variable to Log.
-
Activate and save
- Click the Activated toggle to turn it on.
- Click Save.
Configuration reference
| Field | Description |
|---|---|
| Trigger Type | When record created, updated, deleted |
| Execution Phase | Before or After database operation |
| Select Table | Collection that triggers automation |
| Table Alias | Reference name for record data |
Variables in inputs
Use variables for dynamic data. Click + next to fields to select from:
- Trigger record fields (for example,
{{user.email}}) - Queried records (for example,
{{manager.name}}) - Variables (for example,
{{welcomeMessage}})
Example: Log new user emails
Trigger: When record created (alias: user)
Action: Logger
Log Type: Log Variable
Variable: {{user.email}}
Related
- Triggers — Learn trigger types and filters
- Actions Overview — See available actions
- Conditions — Add logic to workflows
- Variables — Create computed values