Skip to main content

POST /api/v1/admin/cache

Emergency cache flush. Invalidates cached offers, decisioning gates, and/or contact policies. Admin only.

Request Body

Response


GET /api/v1/admin/dlq

Get dead letter queue (DLQ) summary and events. Admin only.

Query Parameters

Response

Alert Levels

The alert field summarizes queue pressure so operators can decide whether to retry, purge, or page a human. The thresholds are:

POST /api/v1/admin/dlq

Retry or purge DLQ events. Admin only.

Request Body

Response (retry)

Response (purge)


GET /api/v1/admin/retention-configs

List data retention configurations for the tenant. Admin only.

Response


POST /api/v1/admin/retention-configs

Create or update a retention configuration (upsert). Admin only.

Request Body

The request body is validated server-side; invalid dataClass values, out-of-range retentionDays, and missing required fields return 400 Bad Request.

Example

Response: 200 OK with the upserted retention configuration object (same shape as the items returned by the list endpoint).

GET /api/v1/admin/rls

Report row-level security (RLS) posture for every tenant-scoped table. Admin only.

Response

totalTables is the count of tables in the platform’s curated tenant-scoped table list. missingRLS lists tables that either have RLS disabled OR are missing the tenant_isolation policy. Use this report to confirm tenant-isolation coverage across every multi-tenant table before a release.

POST /api/v1/admin/rls

Idempotent enable. Turns on ENABLE ROW LEVEL SECURITY + FORCE ROW LEVEL SECURITY on every table in the configured RLS table list and creates the tenant_isolation policy where missing. Admin only. Logs an audit row with action update, entityType rls, entityId enable_all.

Response

success is true only when failed is empty. Any table that could not be enabled is listed in failed with the underlying error message and the call still returns 200 OK so operators can re-run after fixing the offending table.

GET /api/v1/admin/sbom

Returns the CycloneDX 1.5 software bill of materials for the running deployment, computed on demand from the deployment’s package-lock.json. Admin only. Shipped W4.5 (2026-04-28).

Response

The response includes the full CycloneDX document, a deterministic SHA-256 digest of that document, and the component count. The same digest is mirrored in the X-SBOM-Digest response header so operators can pin against it without re-parsing the body, and the response carries Cache-Control: no-store. The release pipeline still publishes the SBOM as a release artifact at build time; this endpoint is the runtime-side counterpart for self-hosters who want to verify the components running in their cluster without rebuilding the image.

POST /api/v1/cleanup

Trigger data cleanup for expired variant assignments and old audit logs. Rate limited to 5 requests per 60 seconds. Admin only.

Response


GET /api/v1/metrics/summary

Returns Prometheus kaireon_* metrics as JSON. Used by the operations dashboard. Admin only.

Response


POST /api/v1/tenant/reset

Reset a playground workspace by deleting all tenant data. Only available for playground tenants. Admin only.

Request Body

Response

This permanently deletes ALL tenant data including Offers, Decision Flows, pipelines, interaction history, and all other records. This cannot be undone.

Roles

See also: Operations | Compliance