Workflow Execution Results

Understand the results produced by each workflow step when processing orders, including status, errors, and duration.

Workflow Execution Results

Each time a workflow runs on an order, every workflow step produces an OrderActionExecutionResult. These results are attached to the Event Log entry for the workflow completion event, giving you detailed insight into what each step did.

Result Model

PropertyTypeDescription
actionStatusstringOutcome of the step (e.g., success, error)
actionTypestringType of action performed
errorReasonstringError details if the step failed
messagestringHuman-readable result message
messageHeadingstringMessage heading/title
durationTimeSpanHow long the step took to execute
cancelWorkflowboolWhether this step canceled the remaining workflow
triggerNewStatusstringIf set, the order transitioned to this new status
orderStatusChangedboolWhether the order status changed as a result
isInvisibleboolWhether the result is hidden in the UI

How to Access

Workflow execution results are available via:

  • Event Log attachments: Look for Event Log entries with category Workflow. The results are stored as attachments with type workflowJson.
  • Order detail page in the UI: After a workflow runs, the execution results are displayed on the order detail page showing the outcome of each step.

On this page