LIVE EXECUTION PROOF

Real Workflow Runs

Real workflow runs with governance, approvals, and audit trail — executed on the live K0nsult API and saved to the production database.

Evidence generated: 2026-03-23 • Server: k0nsult.fly.dev (fra)

3
Workflows Tested
12
API Calls Made
2
Approved
1
Correctly Blocked
1
Human Approval
1
Exception Logged

// Workflow Execution Results

Workflow 1: Support Ticket Triage

COMPLETED
Workflow ID
support-triage-001
Risk Score
2 / 10
Decision
APPROVE
Governance Level
A — Auto-Approved
Data Classification
internal
Action Type
classify
Duration
2,100ms (2.1s)
Human Approval
Not required

EXECUTION TIMELINE

2026-03-23T21:10:56.964Z
Pre-check: risk=2, decision=APPROVE, level=A
Data: internal | Action: classify | Auto-approved by policy engine
2026-03-23T21:11:11.019Z
Execution completed: COMPLETED (2,100ms)
4 nodes executed | Output: Ticket classified as billing-inquiry, routed to support-L1
2026-03-23T21:11:11.019Z
Audit trail saved to database
Full decision chain logged immutably
API Response — POST /api/n8n/pre-check
{
  "ok": true,
  "decision": "APPROVE",
  "risk_score": 2,
  "level": "A",
  "workflow_id": "support-triage-001",
  "timestamp": "2026-03-23T21:10:56.964Z"
}
API Response — POST /api/n8n/execution-log
{
  "ok": true,
  "logged": true,
  "timestamp": "2026-03-23T21:11:11.019Z"
}

Workflow 2: Financial Document Processing

COMPLETED (after approval)
Workflow ID
finance-doc-002
Risk Score
7 / 10
Decision
REVIEW
Governance Level
C — Human Approval Required
Data Classification
financial
Action Type
modify
Duration
8,500ms (8.5s)
Approved By
0n40i4

EXECUTION TIMELINE

2026-03-23T21:10:57.372Z
Pre-check: risk=7, decision=REVIEW, level=C
Data: financial | Action: modify | Requires human approval
2026-03-23T21:11:13.415Z
Workflow PAUSED — waiting for human approval
Approval ID: APR-1774300273415 | Reason: Financial data modification requires Level C approval
2026-03-23T21:11:20.837Z
APPROVED by 0n40i4
Comment: Financial batch approved after manual review of invoice details
2026-03-23T21:11:28.208Z
Execution completed: COMPLETED (8,500ms)
7 nodes executed | Output: Invoice batch processed, 12 entries validated, ERP records created
API Response — POST /api/n8n/pre-check
{
  "ok": true,
  "decision": "REVIEW",
  "risk_score": 7,
  "level": "C",
  "workflow_id": "finance-doc-002",
  "timestamp": "2026-03-23T21:10:57.372Z"
}
API Response — POST /api/n8n/pause-for-approval
{
  "ok": true,
  "approval_id": "APR-1774300273415",
  "status": "WAITING",
  "message": "Workflow paused. Approval required."
}
API Response — POST /api/n8n/resume-after-approval
{
  "ok": true,
  "approval_id": "APR-1774300273415",
  "decision": "APPROVED",
  "timestamp": "2026-03-23T21:11:20.837Z"
}
API Response — POST /api/n8n/execution-log
{
  "ok": true,
  "logged": true,
  "timestamp": "2026-03-23T21:11:28.208Z"
}

Workflow 3: Compliance Audit Transfer

BLOCKED + CANCELLED
Workflow ID
compliance-003
Risk Score
9 / 10
Decision
DENY
Governance Level
D — Blocked by Policy
Data Classification
regulated
Action Type
transfer
Exception Type
POLICY_VIOLATION (critical)
Cancelled By
governance-engine

EXECUTION TIMELINE

2026-03-23T21:10:58.046Z
Pre-check: risk=9, decision=DENY, level=D
Data: regulated | Action: transfer | Blocked by governance policy
2026-03-23T21:11:15.262Z
EXCEPTION: POLICY_VIOLATION (critical, flag=RED)
Exception ID: EXC-1774300275234 | Regulated data transfer to external system blocked by data sovereignty policy
2026-03-23T21:11:21.800Z
Execution CANCELLED by governance-engine
Reason: Regulated data transfer blocked by data sovereignty policy
API Response — POST /api/n8n/pre-check
{
  "ok": true,
  "decision": "DENY",
  "risk_score": 9,
  "level": "D",
  "workflow_id": "compliance-003",
  "timestamp": "2026-03-23T21:10:58.046Z"
}
API Response — POST /api/n8n/register-exception
{
  "ok": true,
  "exception_id": "EXC-1774300275234",
  "severity": "critical",
  "flag": "RED",
  "timestamp": "2026-03-23T21:11:15.262Z"
}
API Response — POST /api/n8n/cancel-execution
{
  "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

01

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).

02

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.

03

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.

04

Immutable Audit

Every decision, approval, exception, and cancellation is logged to the database with timestamps, actor IDs, and full payload. Nothing is deleted.