Get Compliance Role ​
get /v1/compliance/organizations/{org_uuid}/roles/{role_id}
Get Compliance Role
Path Parameters ​
org_uuid: stringThe organization UUID
role_id: stringThe role ID (tagged ID, e.g., rbac_role_abc123)
Header Parameters ​
"x-api-key": optional string
Returns ​
id: stringRole identifier (tagged ID)
created_at: stringRole creation timestamp (ISO 8601)
description: stringRole description
name: stringRole name
updated_at: stringRole last-updated timestamp (ISO 8601)
Example ​
http
curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/roles/$ROLE_ID \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"Response ​
json
{
"id": "id",
"created_at": "created_at",
"description": "description",
"name": "name",
"updated_at": "updated_at"
}