Claude Platform Docs

컴플라이언스 설정 가져오기

GET/v1/organizations/compliance_settings

조직의 컴플라이언스 설정을 조회합니다.

컴플라이언스 설정은 싱글턴 리소스입니다. 조직당 정확히 하나만 존재하며 식별자 없이 접근합니다. state 필드는 Compliance API가 활성화되어 있는지 여부를 나타냅니다. 상위 조직이 있는 조직은 상위 조직의 구성에서 상속된 상태를 읽습니다.

Returns
BetaComplianceSettings object{ state, type }

Whether the Compliance API is enabled for this organization.

One of the following:
BetaComplianceSettingsStateEnabled object{ type }
type: "enabled"
defaultenabled
BetaComplianceSettingsStateDisabled object{ type }
type: "disabled"
defaultdisabled
type: "compliance_settings"
defaultcompliance_settings
컴플라이언스 설정 가져오기
curl https://api.anthropic.com/v1/organizations/compliance_settings \
    -H 'anthropic-version: 2023-06-01' \
    -H "X-Api-Key: $ANTHROPIC_API_KEY"
Returns Examples
Response 200
{
  "state": {
    "type": "enabled"
  },
  "type": "compliance_settings"
}