Claude Platform Docs

Compliance-Einstellungen abrufen

$ ant beta:organization:compliance-settings retrieve
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
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"
Compliance-Einstellungen abrufen
ant beta:organization:compliance-settings retrieve \
  --api-key my-anthropic-api-key
Returns Examples
Response 200
{
  "state": {
    "type": "enabled"
  },
  "type": "compliance_settings"
}