Claude Platform Docs

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

$ ant beta:organization:compliance-settings retrieve
GET/v1/organizations/compliance_settings

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

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

Returns
beta_compliance_settings: object{ state, type }

Whether the Compliance API is enabled for this organization.

One of the following:
beta_compliance_settings_state_enabled: object{ type }
type: "enabled"
beta_compliance_settings_state_disabled: object{ type }
type: "disabled"
type: "compliance_settings"
컴플라이언스 설정 가져오기
ant beta:organization:compliance-settings retrieve \
  --api-key my-anthropic-api-key
Returns Examples
Response 200
{
  "state": {
    "type": "enabled"
  },
  "type": "compliance_settings"
}