Flow Studio
Execution Metadata
Below the status badge, the Execution Status tab displays contextual metadata about this specific run — the ExecutionId, the ProcessThread it belongs to, and who or what triggered it.
Metadata Fields
Fields Reference
| Field | Source | Purpose |
|---|---|---|
| Execution ID | POST /execute response | Correlate with server logs, support tickets, and the Execution History tab |
| Process Thread | ProcessThread.name + version | Identify which version of the workflow ran |
| Triggered By | Actor identity from auth token | Audit — who initiated this run |
| Trigger Type | ExecutionTriggerType enum | Manual, Webhook, Schedule, Form — how the execution was initiated |
Copying the Execution ID
A copy button next to the ExecutionId uses the Clipboard API:
navigator.clipboard.writeText(executionId)
.then(() => showToast('Execution ID copied'));
The ExecutionId is the primary key to look up this run in:
- The Execution History tab
- Backend logs (search by
executionIdfield) - OpenTelemetry traces (the ExecutionId is attached as a span attribute)
- The REST API:
GET /api/v1/process-engine/executions/{executionId}