The whole hunk
from line 19, old and new numbered
/
lines
from line 19
1919
2020### Headers
2121
22- `"anthropic-version": optional string`
23
24 The version of the Claude API you want to use.
25
26 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
27
2822- `"x-api-key": optional string`
2923
3024### Returns
from line 61
6761
6862```bash
6963curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
64 -H 'anthropic-version: 2023-06-01' \
7065 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7166```
7267
from line 99
10499
105100### Headers
106101
107- `"anthropic-version": optional string`
108
109 The version of the Claude API you want to use.
110
111 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
112
113102- `"x-api-key": optional string`
114103
115104### Returns
from line 155
166155
167156```bash
168157curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID/metadata \
158 -H 'anthropic-version: 2023-06-01' \
169159 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
170160```
171161
from line 193
203193
204194### Headers
205195
206- `"anthropic-version": optional string`
207
208 The version of the Claude API you want to use.
209
210 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
211
212196- `"x-api-key": optional string`
213197
214198### Returns
from line 212
228212```bash
229213curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
230214 -X DELETE \
215 -H 'anthropic-version: 2023-06-01' \
231216 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
232217```
233218