Get Compliance Group ​
get /v1/compliance/groups/{group_id}
Get Compliance Group
Path Parameters ​
group_id: stringThe group ID (tagged ID, e.g., rbac_group_abc123)
Header Parameters ​
"x-api-key": optional string
Returns ​
id: stringGroup identifier (tagged ID)
created_at: stringGroup creation timestamp (ISO 8601)
description: stringGroup description
name: stringGroup name
roles: array of stringRole IDs assigned to this group.
source_type: stringHow the group was created ('direct' or 'scim')
updated_at: stringGroup last-updated timestamp (ISO 8601)
Example ​
http
curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"Response ​
json
{
"id": "id",
"created_at": "created_at",
"description": "description",
"name": "name",
"roles": [
"string"
],
"source_type": "source_type",
"updated_at": "updated_at"
}