Portal Community

What Is Workflow History?

Every time a workflow runs in BizFirstGO, it creates an execution record in the Process Engine. WorkDesk's Workflow History section surfaces the subset of executions that are relevant to you — those you started, or those where you were assigned a HIL task.

History is read-only from the employee perspective — you can see what happened and drill down for details, but you cannot modify or cancel executions from WorkDesk (that requires admin or designer roles).

History at a Glance

3
Running
42
Completed (30d)
2
Failed (30d)
1
Suspended

These summary counts appear at the top of the history section and update when the page loads.

What Qualifies for Your History?

An execution appears in your history if either condition is true:

Not All Executions Are Visible

Executions you did not trigger and did not participate in as a HIL actor do not appear in your history — even if the workflow involved your department or colleagues. This is intentional: employees see only what is relevant to their own work.

History API

GET /api/workdesk/executions
Authorization: Bearer {token}

// Query parameters
?status=completed
?workflowName=expense
?from=2026-05-01&to=2026-05-31
?triggerType=manual
?page=1&pageSize=25
?sortBy=triggeredAt&sortDir=desc

// Response
{
  "summary": { "running": 3, "completed": 42, "failed": 2, "suspended": 1 },
  "items": [ { ... execution records ... } ],
  "totalCount": 48,
  "page": 1,
  "pageSize": 25
}

Execution Record Fields

FieldTypeDescription
executionIdGUIDUnique execution identifier
workflowNamestringDisplay name of the workflow
workflowIdstringWorkflow definition ID
triggeredAtISO 8601When execution started
completedAtISO 8601 or nullWhen execution ended (null if still running)
durationMsnumber or nullTotal duration in milliseconds
statusenumrunning / completed / failed / suspended / cancelled
triggerTypestringmanual / scheduled / webhook / api
actorRolestringtriggerer / hil-respondent
outputPreviewobjectTruncated last-node output for quick review