GET /v1/organization/dashboard
Aggregate JIS across every operator in the authenticated org.
What this is
Organization-wide aggregate view: mean and median JIS, band distribution, at-risk counts, per-domain rollup, compliance status flag.
When to use
Executive dashboards, compliance officer reviews, board reporting.
Request
curl https://api.cohesionauth.com/v1/organization/dashboard \
-H "X-API-Key: $COHESION_API_KEY"
Python
dash = client.organization_dashboard()
TypeScript
const dash = await client.organizationDashboard();
Response (abridged)
{
"organization": { "id": "org_...", "name": "Example Bank" },
"domain": "financial",
"tier": "standard",
"dashboard": {
"total_operators": 50,
"mean_jis": 72.4,
"median_jis": 74,
"at_risk_count": 4,
"band_distribution": { "exemplary": 6, "proficient": 18, "adequate": 22, "at_risk": 4 },
"compliance_status": "compliant"
},
"request_id": "req_01H...",
"timestamp": "2026-04-22T18:22:10.432Z"
}
Compliance threshold
compliance_status is non_compliant when more than 10% of high-risk operators have JIS < 60, or when any critical-decision operator has JIS < 40.
Errors
| Status | Meaning |
|---|---|
401 | Bad key |
Next step
Guide: organization oversight.