Get a support operation cohort
GET
/api/admin/support-ops/cohorts/{cohortId}
Code sample: Shell / cURL
curl --request GET \ --url https://auth.example.com/api/admin/support-ops/cohorts/example \ --header 'Authorization: Bearer <token>'Return a saved support operation cohort, redacted counts, snapshot status, risk, and expiration.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” cohortId
required
string
Responses
Section titled “ Responses ”Support operation cohort or preview.
Media type application/json
object
cohort_id
string
resource
string
blocked_reasons
Array<string>
blocked_reasons_suppressed
boolean
privacy
object
min_count
integer format: int64
low_count_suppressed
boolean
count_precision
integer format: int64
count_exact
boolean
complementary_suppression
boolean
snapshot_status
string
expires_at
integer format: int64
selector_hash
string
risk
object
key
additional properties
created_at
integer format: int64
Example
{ "cohort_id": "cohort_123", "resource": "User", "intended_action": "suspend", "matched_count": 120, "actionable_count": 118, "blocked_count": 2, "blocked_reasons": [ "not_active" ], "blocked_reasons_suppressed": false, "privacy": { "min_count": 10, "low_count_suppressed": false }, "snapshot_status": "completed", "snapshot_job_id": null, "expires_at": 1770086400000, "selector_hash": "sha256:abc123", "risk": { "min_count": 10, "matched_count": 120, "low_count_suppressed": false, "uses_sensitive_field": false, "risk_level": "medium", "approval_required": true }}default
Section titled “default ”Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}