Claude Platform Docs

Get Compliance Settings

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

Retrieve your organization's Compliance Settings.

Compliance Settings is a singleton resource: there is exactly one per organization, addressed without an identifier. The state field reflects whether the Compliance API is enabled. An organization with a parent organization reads the state inherited from the parent's configuration.

Returns
beta_compliance_settings: object{ type: "compliance_settings", state }
type: "compliance_settings"

Whether the Compliance API is enabled for this organization.

One of the following:
beta_compliance_settings_state_enabled: object{ type: "enabled" }
type: "enabled"
beta_compliance_settings_state_disabled: object{ type: "disabled" }
type: "disabled"
Get Compliance Settings
ant beta:organization:compliance-settings retrieve \
  --api-key my-anthropic-api-key
Returns Examples
Response 200
{
  "state": {
    "type": "enabled"
  },
  "type": "compliance_settings"
}