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 capture · api

One read of Claude Developer Platform

118 pages moved out of 628 read.

api-20260915T043710Z

Pages moved 118 significant first
Pages read 628 in this capture
Captured 04:37 UTC
Corpus hash 14358d75d9f8 corpus-hash

What this read moved

51–75 of 118

This capture is too large to show at once. Changes 51-75 of 118 are below, significant first; the rest are on the following screens.

api/compliance/apps/projects/documents/metadata Changed · +1 / -6 lines

from line 22
2222 
2323## Headers
2424 
25- `"anthropic-version": optional string`
26 
27 The version of the Claude API you want to use.
28 
29 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
30 
3125- `"x-api-key": optional string`
3226 
3327## Returns
from line 78
8478 
8579```bash
8680curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID/metadata \
81 -H 'anthropic-version: 2023-06-01' \
8782 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
8883```
8984 

api/compliance/apps/projects/documents/retrieve Changed · +1 / -6 lines

from line 17
1717 
1818## Headers
1919 
20- `"anthropic-version": optional string`
21 
22 The version of the Claude API you want to use.
23 
24 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
25 
2620- `"x-api-key": optional string`
2721 
2822## Returns
from line 59
6559 
6660```bash
6761curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
62 -H 'anthropic-version: 2023-06-01' \
6863 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
6964```
7065 

api/compliance/apps/projects/list Changed · +1 / -6 lines

from line 84
8484 
8585## Headers
8686 
87- `"anthropic-version": optional string`
88 
89 The version of the Claude API you want to use.
90 
91 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
92 
9387- `"x-api-key": optional string`
9488 
9589## Returns
from line 160
166160 
167161```bash
168162curl https://api.anthropic.com/v1/compliance/apps/projects \
163 -H 'anthropic-version: 2023-06-01' \
169164 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
170165```
171166 

api/compliance/apps/projects/retrieve Changed · +1 / -6 lines

from line 17
1717 
1818## Headers
1919 
20- `"anthropic-version": optional string`
21 
22 The version of the Claude API you want to use.
23 
24 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
25 
2620- `"x-api-key": optional string`
2721 
2822## Returns
from line 97
10397 
10498```bash
10599curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
100 -H 'anthropic-version: 2023-06-01' \
106101 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
107102```
108103 

api/compliance/apps/sessions Changed · +13 / -36 lines

from line 52
5252 
5353#### Headers
5454 
55- `"anthropic-version": optional string`
56 
57 The version of the Claude API you want to use.
58 
59 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
60 
6155- `"x-api-key": optional string`
6256 
6357#### Returns
from line 118
124118 
125119```bash
126120curl https://api.anthropic.com/v1/compliance/apps/sessions/local \
121 -H 'anthropic-version: 2023-06-01' \
127122 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
128123```
129124 
from line 161
166161 
167162#### Headers
168163 
169- `"anthropic-version": optional string`
170 
171 The version of the Claude API you want to use.
172 
173 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
174 
175164- `"x-api-key": optional string`
176165 
177166#### Returns
from line 219
230219 
231220```bash
232221curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID \
222 -H 'anthropic-version: 2023-06-01' \
233223 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
234224```
235225 
from line 297
307297 
308298#### Headers
309299 
310- `"anthropic-version": optional string`
311 
312 The version of the Claude API you want to use.
313 
314 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
315 
316300- `"x-api-key": optional string`
317301 
318302#### Returns
from line 442
458442 A transcript marker generated by the endpoint rather than sent by
459443 either party during the session. Marker messages indicate that the
460444 prompt history diverged from what was captured, that the request's
461 `system` field was present but is not shown, or that
462 prompt-carried history was suppressed because the session spans the
463 child organization's retention boundary and those turns cannot be
464 placed against it (the marker's text names the cause). Markers that
465 report a mismatch with captured history can result from normal request
466 or client processing, not only client modification.
445 `system` field was present but is not shown, or that earlier turns
446 that a request re-sent as history were withheld because they cannot
447 be dated against the child organization's data-retention period
448 (only for organizations with a finite retention period; the request's
449 new user input after its last assistant turn is not affected). The
450 marker's text names the cause. Markers that report a mismatch with
451 captured history can result from normal request or client processing,
452 not only client modification.
467453 
468454 - `type: "synthetic_marker"`
469455 
from line 525
539525 
540526```bash
541527curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID/messages \
528 -H 'anthropic-version: 2023-06-01' \
542529 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
543530```
544531 
from line 647
660647 
661648#### Headers
662649 
663- `"anthropic-version": optional string`
664 
665 The version of the Claude API you want to use.
666 
667 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
668 
669650- `"x-api-key": optional string`
670651 
671652#### Returns
from line 721
740721 
741722```bash
742723curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
724 -H 'anthropic-version: 2023-06-01' \
743725 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
744726```
745727 
from line 817
835817 
836818#### Headers
837819 
838- `"anthropic-version": optional string`
839 
840 The version of the Claude API you want to use.
841 
842 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
843 
844820- `"x-api-key": optional string`
845821 
846822#### Returns
from line 1011
10351011 
10361012```bash
10371013curl https://api.anthropic.com/v1/compliance/apps/sessions/remote/$CLAUDE_REMOTE_SESSION_ID/messages \
1014 -H 'anthropic-version: 2023-06-01' \
10381015 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
10391016```
10401017 

api/compliance/apps/sessions/local Changed · +11 / -24 lines

from line 50
5050 
5151### Headers
5252 
53- `"anthropic-version": optional string`
54 
55 The version of the Claude API you want to use.
56 
57 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
58 
5953- `"x-api-key": optional string`
6054 
6155### Returns
from line 116
122116 
123117```bash
124118curl https://api.anthropic.com/v1/compliance/apps/sessions/local \
119 -H 'anthropic-version: 2023-06-01' \
125120 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
126121```
127122 
from line 159
164159 
165160### Headers
166161 
167- `"anthropic-version": optional string`
168 
169 The version of the Claude API you want to use.
170 
171 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
172 
173162- `"x-api-key": optional string`
174163 
175164### Returns
from line 217
228217 
229218```bash
230219curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID \
220 -H 'anthropic-version: 2023-06-01' \
231221 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
232222```
233223 
from line 411
421411 
422412#### Headers
423413 
424- `"anthropic-version": optional string`
425 
426 The version of the Claude API you want to use.
427 
428 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
429 
430414- `"x-api-key": optional string`
431415 
432416#### Returns
from line 556
572556 A transcript marker generated by the endpoint rather than sent by
573557 either party during the session. Marker messages indicate that the
574558 prompt history diverged from what was captured, that the request's
575 `system` field was present but is not shown, or that
576 prompt-carried history was suppressed because the session spans the
577 child organization's retention boundary and those turns cannot be
578 placed against it (the marker's text names the cause). Markers that
579 report a mismatch with captured history can result from normal request
580 or client processing, not only client modification.
559 `system` field was present but is not shown, or that earlier turns
560 that a request re-sent as history were withheld because they cannot
561 be dated against the child organization's data-retention period
562 (only for organizations with a finite retention period; the request's
563 new user input after its last assistant turn is not affected). The
564 marker's text names the cause. Markers that report a mismatch with
565 captured history can result from normal request or client processing,
566 not only client modification.
581567 
582568 - `type: "synthetic_marker"`
583569 
from line 639
653639 
654640```bash
655641curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID/messages \
642 -H 'anthropic-version: 2023-06-01' \
656643 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
657644```
658645 

api/compliance/apps/sessions/local/list Changed · +1 / -6 lines

from line 48
4848 
4949## Headers
5050 
51- `"anthropic-version": optional string`
52 
53 The version of the Claude API you want to use.
54 
55 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
56 
5751- `"x-api-key": optional string`
5852 
5953## Returns
from line 114
120114 
121115```bash
122116curl https://api.anthropic.com/v1/compliance/apps/sessions/local \
117 -H 'anthropic-version: 2023-06-01' \
123118 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
124119```
125120 

api/compliance/apps/sessions/local/messages Changed · +17 / -18 lines

from line 59
5959 
6060### Headers
6161 
62- `"anthropic-version": optional string`
63 
64 The version of the Claude API you want to use.
65 
66 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
67 
6862- `"x-api-key": optional string`
6963 
7064### Returns
from line 204
210204 A transcript marker generated by the endpoint rather than sent by
211205 either party during the session. Marker messages indicate that the
212206 prompt history diverged from what was captured, that the request's
213 `system` field was present but is not shown, or that
214 prompt-carried history was suppressed because the session spans the
215 child organization's retention boundary and those turns cannot be
216 placed against it (the marker's text names the cause). Markers that
217 report a mismatch with captured history can result from normal request
218 or client processing, not only client modification.
207 `system` field was present but is not shown, or that earlier turns
208 that a request re-sent as history were withheld because they cannot
209 be dated against the child organization's data-retention period
210 (only for organizations with a finite retention period; the request's
211 new user input after its last assistant turn is not affected). The
212 marker's text names the cause. Markers that report a mismatch with
213 captured history can result from normal request or client processing,
214 not only client modification.
219215 
220216 - `type: "synthetic_marker"`
221217 
from line 287
291287 
292288```bash
293289curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID/messages \
290 -H 'anthropic-version: 2023-06-01' \
294291 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
295292```
296293 
from line 478
481478 A transcript marker generated by the endpoint rather than sent by
482479 either party during the session. Marker messages indicate that the
483480 prompt history diverged from what was captured, that the request's
484 `system` field was present but is not shown, or that
485 prompt-carried history was suppressed because the session spans the
486 child organization's retention boundary and those turns cannot be
487 placed against it (the marker's text names the cause). Markers that
488 report a mismatch with captured history can result from normal request
489 or client processing, not only client modification.
481 `system` field was present but is not shown, or that earlier turns
482 that a request re-sent as history were withheld because they cannot
483 be dated against the child organization's data-retention period
484 (only for organizations with a finite retention period; the request's
485 new user input after its last assistant turn is not affected). The
486 marker's text names the cause. Markers that report a mismatch with
487 captured history can result from normal request or client processing,
488 not only client modification.
490489 
491490 - `type: "synthetic_marker"`
492491 

api/compliance/apps/sessions/local/messages/list Changed · +9 / -12 lines

from line 57
5757 
5858## Headers
5959 
60- `"anthropic-version": optional string`
61 
62 The version of the Claude API you want to use.
63 
64 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
65 
6660- `"x-api-key": optional string`
6761 
6862## Returns
from line 202
208202 A transcript marker generated by the endpoint rather than sent by
209203 either party during the session. Marker messages indicate that the
210204 prompt history diverged from what was captured, that the request's
211 `system` field was present but is not shown, or that
212 prompt-carried history was suppressed because the session spans the
213 child organization's retention boundary and those turns cannot be
214 placed against it (the marker's text names the cause). Markers that
215 report a mismatch with captured history can result from normal request
216 or client processing, not only client modification.
205 `system` field was present but is not shown, or that earlier turns
206 that a request re-sent as history were withheld because they cannot
207 be dated against the child organization's data-retention period
208 (only for organizations with a finite retention period; the request's
209 new user input after its last assistant turn is not affected). The
210 marker's text names the cause. Markers that report a mismatch with
211 captured history can result from normal request or client processing,
212 not only client modification.
217213 
218214 - `type: "synthetic_marker"`
219215 
from line 285
289285 
290286```bash
291287curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID/messages \
288 -H 'anthropic-version: 2023-06-01' \
292289 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
293290```
294291 

api/compliance/apps/sessions/local/retrieve Changed · +1 / -6 lines

from line 20
2020 
2121## Headers
2222 
23- `"anthropic-version": optional string`
24 
25 The version of the Claude API you want to use.
26 
27 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
28 
2923- `"x-api-key": optional string`
3024 
3125## Returns
from line 78
8478 
8579```bash
8680curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID \
81 -H 'anthropic-version: 2023-06-01' \
8782 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
8883```
8984 

api/compliance/apps/sessions/remote Changed · +2 / -12 lines

from line 79
7979 
8080### Headers
8181 
82- `"anthropic-version": optional string`
83 
84 The version of the Claude API you want to use.
85 
86 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
87 
8882- `"x-api-key": optional string`
8983 
9084### Returns
from line 153
159153 
160154```bash
161155curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
156 -H 'anthropic-version: 2023-06-01' \
162157 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
163158```
164159 
from line 321
326321 
327322#### Headers
328323 
329- `"anthropic-version": optional string`
330 
331 The version of the Claude API you want to use.
332 
333 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
334 
335324- `"x-api-key": optional string`
336325 
337326#### Returns
from line 515
526515 
527516```bash
528517curl https://api.anthropic.com/v1/compliance/apps/sessions/remote/$CLAUDE_REMOTE_SESSION_ID/messages \
518 -H 'anthropic-version: 2023-06-01' \
529519 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
530520```
531521 

api/compliance/apps/sessions/remote/list Changed · +1 / -6 lines

from line 77
7777 
7878## Headers
7979 
80- `"anthropic-version": optional string`
81 
82 The version of the Claude API you want to use.
83 
84 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
85 
8680- `"x-api-key": optional string`
8781 
8882## Returns
from line 151
157151 
158152```bash
159153curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
154 -H 'anthropic-version: 2023-06-01' \
160155 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
161156```
162157 

api/compliance/apps/sessions/remote/messages Changed · +1 / -6 lines

from line 72
7272 
7373### Headers
7474 
75- `"anthropic-version": optional string`
76 
77 The version of the Claude API you want to use.
78 
79 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
80 
8175- `"x-api-key": optional string`
8276 
8377### Returns
from line 266
272266 
273267```bash
274268curl https://api.anthropic.com/v1/compliance/apps/sessions/remote/$CLAUDE_REMOTE_SESSION_ID/messages \
269 -H 'anthropic-version: 2023-06-01' \
275270 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
276271```
277272 

api/compliance/apps/sessions/remote/messages/list Changed · +1 / -6 lines

from line 70
7070 
7171## Headers
7272 
73- `"anthropic-version": optional string`
74 
75 The version of the Claude API you want to use.
76 
77 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
78 
7973- `"x-api-key": optional string`
8074 
8175## Returns
from line 264
270264 
271265```bash
272266curl https://api.anthropic.com/v1/compliance/apps/sessions/remote/$CLAUDE_REMOTE_SESSION_ID/messages \
267 -H 'anthropic-version: 2023-06-01' \
273268 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
274269```
275270 

api/compliance/code Changed · +3 / -18 lines

from line 76
7676 
7777#### Headers
7878 
79- `"anthropic-version": optional string`
80 
81 The version of the Claude API you want to use.
82 
83 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
84 
8579- `"x-api-key": optional string`
8680 
8781#### Returns
from line 165
171165 
172166```bash
173167curl https://api.anthropic.com/v1/compliance/apps/code/artifacts \
168 -H 'anthropic-version: 2023-06-01' \
174169 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
175170```
176171 
from line 228
233228 
234229#### Headers
235230 
236- `"anthropic-version": optional string`
237 
238 The version of the Claude API you want to use.
239 
240 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
241 
242231- `"x-api-key": optional string`
243232 
244233#### Example
from line 234
245234 
246235```bash
247236curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID/versions/$VERSION_ID \
237 -H 'anthropic-version: 2023-06-01' \
248238 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
249239```
250240 
from line 259
269259 
270260#### Headers
271261 
272- `"anthropic-version": optional string`
273 
274 The version of the Claude API you want to use.
275 
276 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
277 
278262- `"x-api-key": optional string`
279263 
280264#### Returns
from line 278
294278```bash
295279curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID \
296280 -X DELETE \
281 -H 'anthropic-version: 2023-06-01' \
297282 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
298283```
299284 

api/compliance/code/artifacts Changed · +3 / -18 lines

from line 74
7474 
7575### Headers
7676 
77- `"anthropic-version": optional string`
78 
79 The version of the Claude API you want to use.
80 
81 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
82 
8377- `"x-api-key": optional string`
8478 
8579### Returns
from line 163
169163 
170164```bash
171165curl https://api.anthropic.com/v1/compliance/apps/code/artifacts \
166 -H 'anthropic-version: 2023-06-01' \
172167 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
173168```
174169 
from line 226
231226 
232227### Headers
233228 
234- `"anthropic-version": optional string`
235 
236 The version of the Claude API you want to use.
237 
238 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
239 
240229- `"x-api-key": optional string`
241230 
242231### Example
from line 232
243232 
244233```bash
245234curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID/versions/$VERSION_ID \
235 -H 'anthropic-version: 2023-06-01' \
246236 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
247237```
248238 
from line 257
267257 
268258### Headers
269259 
270- `"anthropic-version": optional string`
271 
272 The version of the Claude API you want to use.
273 
274 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
275 
276260- `"x-api-key": optional string`
277261 
278262### Returns
from line 276
292276```bash
293277curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID \
294278 -X DELETE \
279 -H 'anthropic-version: 2023-06-01' \
295280 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
296281```
297282 

api/compliance/code/artifacts/delete Changed · +1 / -6 lines

from line 24
2424 
2525## Headers
2626 
27- `"anthropic-version": optional string`
28 
29 The version of the Claude API you want to use.
30 
31 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
32 
3327- `"x-api-key": optional string`
3428 
3529## Returns
from line 43
4943```bash
5044curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID \
5145 -X DELETE \
46 -H 'anthropic-version: 2023-06-01' \
5247 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
5348```
5449 

api/compliance/code/artifacts/list Changed · +1 / -6 lines

from line 72
7272 
7373## Headers
7474 
75- `"anthropic-version": optional string`
76 
77 The version of the Claude API you want to use.
78 
79 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
80 
8175- `"x-api-key": optional string`
8276 
8377## Returns
from line 161
167161 
168162```bash
169163curl https://api.anthropic.com/v1/compliance/apps/code/artifacts \
164 -H 'anthropic-version: 2023-06-01' \
170165 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
171166```
172167 

api/compliance/code/artifacts/retrieve_version Changed · +1 / -6 lines

from line 32
3232 
3333## Headers
3434 
35- `"anthropic-version": optional string`
36 
37 The version of the Claude API you want to use.
38 
39 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
40 
4135- `"x-api-key": optional string`
4236 
4337## Example
from line 38
4438 
4539```bash
4640curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID/versions/$VERSION_ID \
41 -H 'anthropic-version: 2023-06-01' \
4742 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
4843```
4944 

api/compliance/groups Changed · +3 / -18 lines

from line 31
3131 
3232### Headers
3333 
34- `"anthropic-version": optional string`
35 
36 The version of the Claude API you want to use.
37 
38 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
39 
4034- `"x-api-key": optional string`
4135 
4236### Returns
from line 83
8983 
9084```bash
9185curl https://api.anthropic.com/v1/compliance/groups \
86 -H 'anthropic-version: 2023-06-01' \
9287 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
9388```
9489 
from line 124
129124 
130125### Headers
131126 
132- `"anthropic-version": optional string`
133 
134 The version of the Claude API you want to use.
135 
136 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
137 
138127- `"x-api-key": optional string`
139128 
140129### Returns
from line 164
175164 
176165```bash
177166curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID \
167 -H 'anthropic-version: 2023-06-01' \
178168 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
179169```
180170 
from line 291
301291 
302292#### Headers
303293 
304- `"anthropic-version": optional string`
305 
306 The version of the Claude API you want to use.
307 
308 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
309 
310294- `"x-api-key": optional string`
311295 
312296#### Returns
from line 331
347331 
348332```bash
349333curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID/members \
334 -H 'anthropic-version: 2023-06-01' \
350335 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
351336```
352337 

api/compliance/groups/list Changed · +1 / -6 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 81
8781 
8882```bash
8983curl https://api.anthropic.com/v1/compliance/groups \
84 -H 'anthropic-version: 2023-06-01' \
9085 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
9186```
9287 

api/compliance/groups/members Changed · +1 / -6 lines

from line 31
3131 
3232### Headers
3333 
34- `"anthropic-version": optional string`
35 
36 The version of the Claude API you want to use.
37 
38 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
39 
4034- `"x-api-key": optional string`
4135 
4236### Returns
from line 71
7771 
7872```bash
7973curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID/members \
74 -H 'anthropic-version: 2023-06-01' \
8075 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
8176```
8277 

api/compliance/groups/members/list Changed · +1 / -6 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 69
7569 
7670```bash
7771curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID/members \
72 -H 'anthropic-version: 2023-06-01' \
7873 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7974```
8075 

api/compliance/groups/retrieve Changed · +1 / -6 lines

from line 17
1717 
1818## Headers
1919 
20- `"anthropic-version": optional string`
21 
22 The version of the Claude API you want to use.
23 
24 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
25 
2620- `"x-api-key": optional string`
2721 
2822## Returns
from line 57
6357 
6458```bash
6559curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID \
60 -H 'anthropic-version: 2023-06-01' \
6661 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
6762```
6863 

api/compliance/organizations Changed · +6 / -36 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