Skip to main content
Action

Overview

The Action node executes operations in your connected integrations - send Slack messages, create CRM records, add rows to spreadsheets, update project tasks, and more.
Best for: Creating/updating records, sending messages, triggering actions in connected apps, and integrating with external services.

Configuration

  1. Select Integration: Choose from connected apps (Slack, Google Sheets, Notion, etc.)
  2. Choose Action: Select specific action (Send message, Create record, etc.)
  3. Select Connection: If you have multiple connections, choose which one to use
  4. Map Fields: Provide data from previous nodes using variables
  5. Configure Settings: Action-specific options

Field Configuration Modes

Each field in an action can be configured independently with one of these modes:
ModeDescriptionWhen to Use
ManualEnter a static value or use variables from previous nodesWhen you know exactly what value to use
AutoAI automatically determines the best value based on contextWhen the value depends on workflow context
PromptProvide instructions for AI to generate the valueWhen you need custom AI logic for this field
Manual Mode Example:
{{trigger.output.customer_email}}
Prompt Mode Example:
Based on the sentiment analysis result {{agent.output.structured.sentiment}},
write an appropriate subject line for the follow-up email.

Connection Selection

If you have multiple connections to the same integration (e.g., multiple Slack workspaces or Gmail accounts), select which connection this action should use. This is configured at the action level.

Requires Confirmation

When enabled, the workflow will pause before executing this action and request user confirmation. This is useful for:
  • Actions with significant external impact (sending emails, creating records)
  • Review steps before data is pushed to external systems
  • Compliance workflows requiring human approval
Default: Disabled (action executes automatically)

Error Handling

Configure how errors are handled:
StrategyBehavior
Stop (default)Workflow stops immediately on error
CallbackRoute to an error handling branch
ContinueContinue with error data available

Common Actions

Slack
  • Send message to channel
  • Send direct message
  • Create channel
  • Add reaction
Google Sheets
  • Add row
  • Update row
  • Delete row
  • Update cell
Gmail
  • Send email
  • Create draft
  • Add label
Notion
  • Create page
  • Update database record
CRM (Salesforce, HubSpot)
  • Create/update contact
  • Create/update deal
  • Add activity log

Example

Slack: Send Message
Channel: #support
Message: New ticket #{{trigger.output.ticket_id}}
Priority: {{agent.output.structured.priority}}
Assigned to: {{condition.output.assignee}}

Next Steps