Skip to content

Executions

The Executions page gives you a centralized view of every workflow execution in your organization. Monitor runs across all workflows, search through input and output data, filter by status or time range, and drill into individual executions to inspect step results.

Executions page showing workflow execution history with filters and detail panel

Each row in the table represents a single workflow execution with the following columns:

ColumnDescription
StatusSuccess, Failed, Running, or Queued
WorkflowThe name of the workflow that ran
Execution IDUnique identifier for the execution (click to copy)
StartedTimestamp when the execution began
DurationTotal execution time
StepsNumber of steps that ran
TriggerHow the execution was started — Manual, Webhook, Schedule, Form, or Event
ErrorError message if the execution failed

Use the toolbar filters to narrow down the list:

  • Search — full-text search across initial data and return values (Cmd+K to focus)
  • Status — filter by execution status (Success, Failed, Running, Queued)
  • Workflow — filter to a specific workflow
  • Date range — filter by time window (Last 7 Days, Last 30 Days, or custom)

Click Search to apply your filters.

Click any row to open the detail panel on the right side. The panel shows:

  • Header — workflow name, status badge, execution ID, start time, duration, and step count
  • Initial Data — the input data the workflow received (from a trigger payload, manual input, or sub-workflow call)
  • $vars — variables set during execution via Set Variable steps
  • Steps — each step with its status, duration, and expandable output

From the detail panel you can:

  • Open in builder — jump to the workflow editor with the execution loaded
  • Re-run — re-execute the workflow with the same initial data
  • Download — export the full execution data as JSON

Each execution row has quick actions on the right:

ActionDescription
OpenOpen the execution in the workflow builder
DownloadExport execution data as JSON
Re-runRe-execute with the same initial data

Execution data is protected with two layers of security:

Encryption — All workflow result data (step outputs, input data, variable values) is encrypted at rest. Only execution metadata is stored unencrypted — things like execution ID, timestamps, status, duration, step counts, and trigger type.

Automatic redaction — Sensitive values are automatically redacted from execution details. Any field with a key matching common secret patterns — password, secret, token, apiKey, authorization, credential, privateKey, and others — is replaced with [REDACTED] before being displayed. This happens by default on all execution results so credentials never appear in the UI.


Searchable attributes let you mark specific fields from a workflow’s initial data as indexed for filtering. Once configured, those values appear as badges on the Executions table and can be used to quickly filter executions by the data you care about — a customer ID, order number, environment name, or any other key field.

Searchable attributes are set up in Workflow Settings under the Input Schema section.

  1. Open the workflow builder and click the Settings icon
  2. In the Input Schema section, add or find the field you want to index
  3. Click the search icon next to the field — it toggles between default (not indexed) and Searchable (indexed for filtering)
Workflow Settings showing Input Schema with a field marked as searchable for execution filtering

Fields marked as searchable show a highlighted search icon. A banner at the top of the Input Schema section confirms how many fields are currently indexed.

Executions from workflows with searchable attributes display a small badge next to the execution ID. Hover over it to see the indexed key-value pairs at a glance.

Executions table showing searchable attributes tooltip with key-value pair on hover

There are two ways to filter by searchable attribute values:

From the Executions Table — hover over the searchable attribute badge on any execution row and click it. The value is added as a filter chip in the search bar, instantly narrowing the table to matching executions.

From the Detail Panel — click an execution to open the detail panel. In the Initial Data section, searchable fields show a search icon on hover. Click it to filter by that specific value.

Execution detail panel showing Initial Data with a search icon to filter by a searchable attribute value

Once a searchable attribute filter is active, it appears as a chip below the search bar. Click the chip to adjust:

  • Operator — choose between equals (exact match) or contains (partial match)
  • Value — edit the filter value
  • Remove — delete the filter
Searchable attribute filter chip expanded showing equals operator and value with Remove and Apply buttons
Searchable FieldWhy
customerIdFind all executions for a specific customer
orderIdTrace a single order through your workflows
environmentFilter between production and staging runs
sourceSee which integration or webhook triggered runs
batchIdGroup executions from the same batch job