Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

Organizations changed

api/compliance/organizations

Nearest release: v2.1.272, published 5 hours before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+6added
Lines−36removed
From line 29 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits10to this page, all time

The whole hunk

from line 29, old and new numbered
/
lines
from line 29
2929 
3030### Headers
3131 
32- `"anthropic-version": optional string`
33 
34 The version of the Claude API you want to use.
35 
36 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
37 
3832- `"x-api-key": optional string`
3933 
4034### Returns
from line 61
6761 
6862```bash
6963curl https://api.anthropic.com/v1/compliance/organizations \
64 -H 'anthropic-version: 2023-06-01' \
7065 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7166```
7267 
from line 129
134129 
135130#### Headers
136131 
137- `"anthropic-version": optional string`
138 
139 The version of the Claude API you want to use.
140 
141 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
142 
143132- `"x-api-key": optional string`
144133 
145134#### Returns
from line 189
200189 
201190```bash
202191curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/users \
192 -H 'anthropic-version: 2023-06-01' \
203193 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
204194```
205195 
from line 239
249239 
250240#### Headers
251241 
252- `"anthropic-version": optional string`
253 
254 The version of the Claude API you want to use.
255 
256 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
257 
258242- `"x-api-key": optional string`
259243 
260244#### Returns
from line 283
299283 
300284```bash
301285curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/roles \
286 -H 'anthropic-version: 2023-06-01' \
302287 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
303288```
304289 
from line 323
338323 
339324#### Headers
340325 
341- `"anthropic-version": optional string`
342 
343 The version of the Claude API you want to use.
344 
345 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
346 
347326- `"x-api-key": optional string`
348327 
349328#### Returns
from line 355
376355 
377356```bash
378357curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/roles/$ROLE_ID \
358 -H 'anthropic-version: 2023-06-01' \
379359 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
380360```
381361 
from line 403
423403 
424404#### Headers
425405 
426- `"anthropic-version": optional string`
427 
428 The version of the Claude API you want to use.
429 
430 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
431 
432406- `"x-api-key": optional string`
433407 
434408#### Returns
from line 435
461435 
462436```bash
463437curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/roles/$ROLE_ID/permissions \
438 -H 'anthropic-version: 2023-06-01' \
464439 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
465440```
466441 
from line 480
505480 
506481#### Headers
507482 
508- `"anthropic-version": optional string`
509 
510 The version of the Claude API you want to use.
511 
512 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
513 
514483- `"x-api-key": optional string`
515484 
516485#### Returns
from line 783
814783 
815784```bash
816785curl https://api.anthropic.com/v1/compliance/organizations/$ORGANIZATION_ID/settings \
786 -H 'anthropic-version: 2023-06-01' \
817787 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
818788```
819789