Real Workflow Runs
Real workflow runs with governance, approvals, and audit trail — executed on the live K0nsult API and saved to the production database.
// Workflow Execution Results
Workflow 1: Support Ticket Triage
COMPLETEDEXECUTION TIMELINE
{
"ok": true,
"decision": "APPROVE",
"risk_score": 2,
"level": "A",
"workflow_id": "support-triage-001",
"timestamp": "2026-03-23T21:10:56.964Z"
}
{
"ok": true,
"logged": true,
"timestamp": "2026-03-23T21:11:11.019Z"
}
Workflow 2: Financial Document Processing
COMPLETED (after approval)EXECUTION TIMELINE
{
"ok": true,
"decision": "REVIEW",
"risk_score": 7,
"level": "C",
"workflow_id": "finance-doc-002",
"timestamp": "2026-03-23T21:10:57.372Z"
}
{
"ok": true,
"approval_id": "APR-1774300273415",
"status": "WAITING",
"message": "Workflow paused. Approval required."
}
{
"ok": true,
"approval_id": "APR-1774300273415",
"decision": "APPROVED",
"timestamp": "2026-03-23T21:11:20.837Z"
}
{
"ok": true,
"logged": true,
"timestamp": "2026-03-23T21:11:28.208Z"
}
Workflow 3: Compliance Audit Transfer
BLOCKED + CANCELLEDEXECUTION TIMELINE
{
"ok": true,
"decision": "DENY",
"risk_score": 9,
"level": "D",
"workflow_id": "compliance-003",
"timestamp": "2026-03-23T21:10:58.046Z"
}
{
"ok": true,
"exception_id": "EXC-1774300275234",
"severity": "critical",
"flag": "RED",
"timestamp": "2026-03-23T21:11:15.262Z"
}
{
"ok": true,
"status": "CANCELLED",
"workflow_id": "compliance-003",
"timestamp": "2026-03-23T21:11:21.800Z"
}
// Governance Decision Matrix
| Workflow | Risk | Level | Decision | Human | Result |
|---|---|---|---|---|---|
| Support Triage | 2 | A | APPROVE | No | COMPLETED |
| Financial Docs | 7 | C | REVIEW | 0n40i4 | COMPLETED |
| Compliance Transfer | 9 | D | DENY | Blocked | CANCELLED |
Level A = auto-approve (risk 0-2) | Level B = agent + review (risk 3-4) | Level C = human approval (risk 5-7) | Level D = deny/block (risk 8-10)
// Verify These Results
These are live API endpoints. Anyone can call them to verify the execution data stored on the K0nsult production server.
// How the Governance Engine Works
Risk Scoring
Every workflow is scored 0-10 based on data classification (internal=2, PII=4, financial=5, regulated=6) and action type (classify=0, generate=1, modify=2, delete/transfer=3).
Decision Levels
Risk maps to governance levels: A (auto), B (agent+review), C (human approval), D (deny). Each level has different approval workflows and SLAs.
Pause & Approve
High-risk workflows are paused automatically. The designated approver receives email notification and can approve/deny via the orchestration panel or email reply.
Immutable Audit
Every decision, approval, exception, and cancellation is logged to the database with timestamps, actor IDs, and full payload. Nothing is deleted.