Workflow Execution History
Track all workflow executions with detailed logs. The history view shows execution status, duration, and any errors that occurred.
Execution Log
| Execution ID | Workflow | Status | Duration | Timestamp |
|---|---|---|---|---|
| exec-7f3a2b | New Employee Onboarding | Success | 4.2s | 2 min ago |
| exec-8e4c1d | License Threshold Alert | Success | 1.8s | 1 hour ago |
| exec-9d5b2e | Employee Offboarding | Failed | 12.4s | 3 hours ago |
Execution Details
Click any execution to view:
- Trigger details — What event or schedule initiated the execution
- Step-by-step log — Each action taken with input/output data
- Timing — Duration of each step and total execution time
- Errors — Detailed error messages and stack traces for failures
- Data — Variables and data passed between workflow steps
Filtering
Filter execution history by:
- Workflow name
- Status (Success, Failed, Running, Cancelled)
- Date range
- Trigger type (Scheduled, Event, Manual)
Retry Failed Executions
Failed executions can be retried from the history view. The retry uses the same input data as the original execution.
API Reference
GET /api/automation/workflows/:id/executions— Get workflow execution historyGET /api/automation/executions/:id— Get execution detailsPOST /api/automation/executions/:id/retry— Retry a failed execution
Last updated on