HTTP API routes and admin web UI handlers for workflow management.
API Endpoints (canonical): GET /api/v1/workflow/instances/:id — current state + metadata GET /api/v1/workflow/instances/:id/audit — full audit log POST /api/v1/workflow/instances — start a new workflow instance POST /api/v1/workflow/instances/:id/transition — execute a transition
Compatibility: /api/workflow/* redirects to /api/v1/workflow/* via versioning middleware.
Admin Web UI (mounted under /web/admin): GET /workflows — list all workflow instances GET /workflows/:id — instance detail with state viz + audit trail
All routes require authentication (actor extracted from ring request). Caller is responsible for mounting under an authenticated router.
HTTP API routes and admin web UI handlers for workflow management. API Endpoints (canonical): GET /api/v1/workflow/instances/:id — current state + metadata GET /api/v1/workflow/instances/:id/audit — full audit log POST /api/v1/workflow/instances — start a new workflow instance POST /api/v1/workflow/instances/:id/transition — execute a transition Compatibility: /api/workflow/* redirects to /api/v1/workflow/* via versioning middleware. Admin Web UI (mounted under /web/admin): GET /workflows — list all workflow instances GET /workflows/:id — instance detail with state viz + audit trail All routes require authentication (actor extracted from ring request). Caller is responsible for mounting under an authenticated router.
(handle-get-audit-log engine request)GET /api/v1/workflow/instances/:id/audit
GET /api/v1/workflow/instances/:id/audit
(handle-get-instance engine request)GET /api/v1/workflow/instances/:id
GET /api/v1/workflow/instances/:id
(handle-get-instance-web store registry request)GET /workflows/:id — render the workflow instance detail page.
GET /workflows/:id — render the workflow instance detail page.
(handle-list-instances-web store request)GET /workflows — render the workflow instances list page.
GET /workflows — render the workflow instances list page.
(handle-start-workflow engine request)POST /api/v1/workflow/instances
POST /api/v1/workflow/instances
(handle-transition engine request)POST /api/v1/workflow/instances/:id/transition
POST /api/v1/workflow/instances/:id/transition
(workflow-routes engine)Reitit route data for the workflow API. Mounted under /api/v1.
Args: engine - WorkflowService (IWorkflowEngine)
Reitit route data for the workflow API. Mounted under /api/v1. Args: engine - WorkflowService (IWorkflowEngine)
(workflow-web-routes store registry user-service)Web routes for the workflow admin UI, as Reitit data.
Routes are mounted under /web/admin by the HTTP handler: GET /web/admin/workflows — list all workflow instances GET /web/admin/workflows/:id — instance detail + audit trail
Route-level :middleware is Reitit's own and applies to every endpoint
beneath it — the :meta wrapper this used to need is gone (ADR-037).
Args: store - IWorkflowStore registry - IWorkflowRegistry user-service - IUserService (for authentication middleware)
Web routes for the workflow admin UI, as Reitit data. Routes are mounted under /web/admin by the HTTP handler: GET /web/admin/workflows — list all workflow instances GET /web/admin/workflows/:id — instance detail + audit trail Route-level `:middleware` is Reitit's own and applies to every endpoint beneath it — the `:meta` wrapper this used to need is gone (ADR-037). Args: store - IWorkflowStore registry - IWorkflowRegistry user-service - IUserService (for authentication middleware)
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |