Running & Debugging

Execute workflows, watch live runs, inspect node data, and restart from a step.

Running a workflow

TriggerHow to run
ManualClick Run in the editor
WebhookSend an HTTP request to the webhook URL shown on the Start node
ScheduleRuns automatically based on the cron expression you configured
AppTriggered when the connected app fires an event (e.g. new email)
AgentTriggered via the AI agent chat sidebar

Live execution stream

When a workflow runs, you see real-time updates on the canvas:

  • Nodes highlight as they execute
  • Status indicators show success, failure, or in-progress
  • Click any executed node to view its Execution Data tab

Execution history

Open the Executions panel to see past runs:

  • Status (completed, failed, cancelled)
  • Start and end times
  • Per-node input/output data
  • Error messages for failed steps

Inspecting node data

After a run, click a node and switch to the Execution Data tab. You'll see:

  • Input — what the node received from upstream nodes and the trigger
  • Output — what the node produced

This is the fastest way to debug template references and data shape issues.

Restart from a node

If a workflow fails partway through, you can restart from a specific node instead of re-running everything:

  1. Open the failed execution.
  2. Click the node where you want to resume.
  3. Choose Restart from here.

Upstream node outputs from the original execution are preserved, so downstream nodes get the same inputs without re-executing earlier steps.

Cancelling a run

Long-running workflows (especially AI agent loops) can be cancelled from the execution panel. The workflow stops at the current node and marks the execution as cancelled.

Common issues

ProblemFix
Node shows undefined in outputCheck upstream Execution Data; verify your {{template}} path
OAuth error on Action nodeReconnect the app via the auth prompt or Settings
AI node timeoutReduce maxTokens, use a faster model, or simplify the prompt
Webhook not firingVerify the URL, HTTP method, and authentication settings on the Start node
Function node errorCheck the error message in Execution Data; ensure your code returns a value

Import and export

Share workflows with your team using Import / Export in the workflow header. Exported files are encrypted. This is useful for:

  • Backing up workflows
  • Moving automations between organizations
  • Sharing templates without exposing credentials (credentials are not included in exports)