Claude Platform Docs

Compliance-Einstellungen abrufen

GET/v1/organizations/compliance_settings

Rufe die Compliance-Einstellungen deiner Organisation ab.

Die Compliance-Einstellungen sind eine Singleton-Ressource: Es gibt genau eine pro Organisation, die ohne Bezeichner adressiert wird. Das Feld state gibt an, ob die Compliance API aktiviert ist. Eine Organisation mit einer übergeordneten Organisation liest den Zustand, der von der Konfiguration der übergeordneten Organisation geerbt wird.

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
Compliance-Einstellungen abrufen
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"
}