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"
}