The whole hunk
from line 86, old and new numbered
/
lines
from line 86
8686
8787### Headers
8888
89- `"anthropic-version": optional string`
90
91 The version of the Claude API you want to use.
92
93 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
94
9589- `"x-api-key": optional string`
9690
9791### Returns
from line 162
168162
169163```bash
170164curl https://api.anthropic.com/v1/compliance/apps/projects \
165 -H 'anthropic-version: 2023-06-01' \
171166 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
172167```
173168
from line 204
209204
210205### Headers
211206
212- `"anthropic-version": optional string`
213
214 The version of the Claude API you want to use.
215
216 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
217
218207- `"x-api-key": optional string`
219208
220209### Returns
from line 284
295284
296285```bash
297286curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
287 -H 'anthropic-version: 2023-06-01' \
298288 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
299289```
300290
from line 334
344334
345335### Headers
346336
347- `"anthropic-version": optional string`
348
349 The version of the Claude API you want to use.
350
351 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
352
353337- `"x-api-key": optional string`
354338
355339### Returns
from line 353
369353```bash
370354curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
371355 -X DELETE \
356 -H 'anthropic-version: 2023-06-01' \
372357 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
373358```
374359
from line 561
576561
577562#### Headers
578563
579- `"anthropic-version": optional string`
580
581 The version of the Claude API you want to use.
582
583 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
584
585564- `"x-api-key": optional string`
586565
587566#### Returns
from line 653
674653
675654```bash
676655curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/attachments \
656 -H 'anthropic-version: 2023-06-01' \
677657 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
678658```
679659
from line 710
730710
731711#### Headers
732712
733- `"anthropic-version": optional string`
734
735 The version of the Claude API you want to use.
736
737 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
738
739713- `"x-api-key": optional string`
740714
741715#### Returns
from line 858
884858
885859```bash
886860curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/collaborators \
861 -H 'anthropic-version: 2023-06-01' \
887862 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
888863```
889864
from line 895
920895
921896#### Headers
922897
923- `"anthropic-version": optional string`
924
925 The version of the Claude API you want to use.
926
927 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
928
929898- `"x-api-key": optional string`
930899
931900#### Returns
from line 937
968937
969938```bash
970939curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
940 -H 'anthropic-version: 2023-06-01' \
971941 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
972942```
973943
from line 975
1005975
1006976#### Headers
1007977
1008- `"anthropic-version": optional string`
1009
1010 The version of the Claude API you want to use.
1011
1012 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1013
1014978- `"x-api-key": optional string`
1015979
1016980#### Returns
from line 1031
10671031
10681032```bash
10691033curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID/metadata \
1034 -H 'anthropic-version: 2023-06-01' \
10701035 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
10711036```
10721037
from line 1069
11041069
11051070#### Headers
11061071
1107- `"anthropic-version": optional string`
1108
1109 The version of the Claude API you want to use.
1110
1111 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1112
11131072- `"x-api-key": optional string`
11141073
11151074#### Returns
from line 1088
11291088```bash
11301089curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
11311090 -X DELETE \
1091 -H 'anthropic-version: 2023-06-01' \
11321092 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
11331093```
11341094