コンテンツにスキップ

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.

cohortId
required
string

Support operation cohort or preview.

Media type application/json
object
cohort_id
string
resource
string
intended_action
Any of:
string
matched_count
Any of:
integer format: int64
actionable_count
Any of:
integer format: int64
blocked_count
Any of:
integer format: int64
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
snapshot_job_id
Any of:
string
snapshot_error
Any of:
string
expires_at
integer format: int64
selector_hash
string
risk
object
key
additional properties
support_case_id
Any of:
string
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
}
}

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"
}