Product Guide

AI Trust Registry Integration Playbook

Step-by-step integration guide with implementation sequence, payload examples, and rollout checkpoints.

Last updated Mar 4, 2026

Integration Sequence

  1. Register tenant credentials and webhook endpoint.
  2. Wire discovery pipeline to scoring endpoints.
  3. Configure policy thresholds by environment (dev, staging, pilot-prod).
  4. Validate webhook signatures and idempotent processing.
  5. Enable approval automation and remediation workflows.

Reference Flow

1Inventory source
2Adapter/Connector
3/v1/assets/score and /v1/agents/score
4Registry score + confidence snapshot
5Threshold evaluation engine

Emits

allow onboardingrequire remediationblock access

Sample Request: Asset Score

POST /v1/assets/score
Authorization: Bearer <token>
X-Tenant-Id: tenant_abc
Content-Type: application/json
{
  "asset_id": "asset_erp_connector_12",
  "owner": "finance-platform",
  "access_scope": ["erp:read", "vendor-api:write"],
  "attestations": [
    {"type": "control", "name": "manual-kill-switch", "status": "enabled"}
  ],
  "evidence": {
    "source_count": 4,
    "freshness_minutes": 15,
    "verification_level": "signed"
  }
}

Sample Response

{
  "frameworks": {
    "provenance": {"score": 76.1, "band": "certified"},
    "mandate": {"score": 63.4, "band": "moderate"},
    "meridian": {"score": 71.0, "band": "gold"}
  },
  "confidence": 0.88,
  "risk_band": "moderate",
  "recommendation": "review"
}

Rollout Strategy

Phase A: Shadow Mode

  • Score entities but do not block approvals.
  • Compare recommendation vs real operator decision.
  • Tune thresholds and confidence floor.

Phase B: Guardrail Mode

  • Block only critical band entities.
  • Auto-create remediation tickets for high band.

Phase C: Enforcement Mode

  • Apply policy thresholds to all production onboarding paths.
  • Report weekly drift in score distribution.