To enable the Compliance API, see the setup guide.
Set up the Compliance API유효 조직 설정 조회
GET/v1/compliance/organizations/{organization_id}/settings
조직의 유효 설정을 조회합니다.
지정된 조직에 현재 적용 중인 설정, 즉 모든 정책이 적용된 후의 강제 상태를 반환합니다. 이는 관리 콘솔에 구성된 내용과 다를 수 있습니다. 조직의 관리자가 변경할 수 없는 설정(예: Anthropic 정책에 의해 제어되거나 해당 조직에서 사용할 수 없는 설정)은 목록에서 제외됩니다.
해당 조직은 API 키의 조직 계층 구조에 속해야 합니다. 알 수 없는 조직이나 계층 구조 외부의 조직은 404를 반환합니다.
Path parameters
Headers
Returns
유효 조직 설정 조회
cURL
curl https://api.anthropic.com/v1/compliance/organizations/$ORGANIZATION_ID/settings \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"Response 200
{
"api_keys": [
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"created_by_id": "created_by_id",
"is_active": true,
"name": "name",
"scopes": [
"string"
],
"expires_at": "2019-12-27T18:11:19.117Z",
"type": "compliance_api_key"
}
],
"organization_id": "organization_id",
"settings": [
{
"name": "ai_powered_artifacts_enabled",
"value": true,
"type": "boolean"
}
],
"type": "effective_organization_settings"
}Returns Examples
Response 200
{
"api_keys": [
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"created_by_id": "created_by_id",
"is_active": true,
"name": "name",
"scopes": [
"string"
],
"expires_at": "2019-12-27T18:11:19.117Z",
"type": "compliance_api_key"
}
],
"organization_id": "organization_id",
"settings": [
{
"name": "ai_powered_artifacts_enabled",
"value": true,
"type": "boolean"
}
],
"type": "effective_organization_settings"
}