Source Intelligence
Sweep 28 Aug 2026 · 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

Get effective organization settings

api/compliance/organizations/settings/retrieve

first seen The page's own history The capture it came from

Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

api/compliance/organizations/settings/retrieve Changed · +47 / -50 lines

# Get effective organization settings ## Path parameters ## Headers ## Returns ## Example ### Response (200) ## Get effective organization settings ### Path Parameters ### Header Parameters ### Returns ### Example #### Response

from line 1
----
-title: Get effective organization settings
-url: https://platform.claude.com/docs/en/api/compliance/organizations/settings/retrieve
----
+# Get effective organization settings
 
-## Get effective organization settings
+**GET** `/v1/compliance/organizations/{organization_id}/settings`
 
-**get** `/v1/compliance/organizations/{organization_id}/settings`
-
 Retrieve the effective settings for an organization.
 
 Returns the settings currently in force for the given organization — the
from line 13
 The organization must belong to the API key's organization hierarchy;
 unknown organizations and organizations outside the hierarchy return 404.
 
-### Path Parameters
+## Path parameters
 
 - `organization_id: string`
 
   The organization's UUID
 
-### Header Parameters
+## Headers
 
 - `"x-api-key": optional string`
 
-### Returns
+## Returns
 
-- `api_keys: array of object { id, created_at, created_by_id, 5 more }`
+- `api_keys: array of object`
 
   Compliance API keys configured for the organization hierarchy, ordered by creation time ascending. Key secret values are never included.
 
from line 37
 
     When the key was created.
 
+    format: date-time
+
   - `created_by_id: string or null`
 
     Identifier of the user who created the key, or null when the key was created by automation or its creator's account no longer exists.
from line 59
 
     When the key will stop authenticating, or null when the key does not expire.
 
+    format: date-time
+
   - `type: optional "compliance_api_key"`
 
-    - `"compliance_api_key"`
+    default: compliance_api_key
 
 - `organization_id: string`
 
-- `settings: array of object { name, value, type }  or object { name, value, type }  or object { name, value, type }  or 3 more`
+- `settings: array of object or object or object or 3 more`
 
-  - `Boolean object { name, value, type }`
+  - `Boolean object`
 
     A setting whose enforced value is a single true/false flag.
 
from line 173
 
     - `type: optional "boolean"`
 
-      - `"boolean"`
+      default: boolean
 
-  - `Integer object { name, value, type }`
+  - `Integer object`
 
     A setting whose enforced value is a whole number; null means no limit
     is in force.
from line 182
 
     - `name: "account_session_duration_seconds"`
 
-      - `"account_session_duration_seconds"`
-
     - `value: number or null`
 
     - `type: optional "integer"`
 
-      - `"integer"`
+      default: integer
 
-  - `String object { name, value, type }`
+  - `String object`
 
     A setting whose enforced value is a single string; null means no value
     is configured.
from line 203
 
     - `type: optional "string"`
 
-      - `"string"`
+      default: string
 
-  - `StringList object { name, value, type }`
+  - `StringList object`
 
     A setting whose enforced value is a list of strings.
 
from line 221
 
     - `type: optional "string_list"`
 
-      - `"string_list"`
+      default: string_list
 
-  - `ProvisioningMode object { value, name, type }`
+  - `ProvisioningMode object`
 
     How organization members are provisioned, resolved to the enforced mode.
 
from line 248
 
     - `name: optional "sso_provisioning_mode"`
 
-      - `"sso_provisioning_mode"`
+      default: sso_provisioning_mode
 
     - `type: optional "provisioning_mode"`
 
-      - `"provisioning_mode"`
+      default: provisioning_mode
 
-  - `DataRetention object { value, name, type }`
+  - `DataRetention object`
 
     The data retention periods in force, keyed by the type of data they
     apply to.
from line 264
     administrator-configured retention period is in force for that data type;
     Anthropic's service defaults may still apply.
 
-    - `value: map[object { duration, timescale, type }  or object { type } ]`
+    - `value: map[object or object]`
 
-      - `Fixed object { duration, timescale, type }`
+      - `Fixed object`
 
         A fixed retention window measured from each item's last activity.
 
from line 280
 
         - `type: optional "fixed"`
 
-          - `"fixed"`
+          default: fixed
 
-      - `Indefinite object { type }`
+      - `Indefinite object`
 
         An indefinite retention period: data is kept with no time limit.
 
         - `type: optional "indefinite"`
 
-          - `"indefinite"`
+          default: indefinite
 
     - `name: optional "data_retention_periods"`
 
-      - `"data_retention_periods"`
+      default: data_retention_periods
 
     - `type: optional "data_retention"`
 
-      - `"data_retention"`
+      default: data_retention
 
 - `type: optional "effective_organization_settings"`
 
-  - `"effective_organization_settings"`
+  default: effective_organization_settings
 
-### Example
+## Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/compliance/organizations/$ORGANIZATION_ID/settings \
     -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
 ```
 
-#### Response
+### Response (200)
 
 ```json
 {