컴플라이언스 설정 가져오기
GET/v1/organizations/compliance_settings
조직의 컴플라이언스 설정을 조회합니다.
컴플라이언스 설정은 싱글턴 리소스입니다. 조직당 정확히 하나만 존재하며 식별자 없이 접근합니다. state 필드는 Compliance API가 활성화되어 있는지 여부를 나타냅니다. 상위 조직이 있는 조직은 상위 조직의 구성에서 상속된 상태를 읽습니다.
Returns
컴플라이언스 설정 가져오기
curl https://api.anthropic.com/v1/organizations/compliance_settings \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY"Response 200
{
"state": {
"type": "enabled"
},
"type": "compliance_settings"
}Returns Examples
Response 200
{
"state": {
"type": "enabled"
},
"type": "compliance_settings"
}