The whole hunk
from line 21, old and new numbered
/
lines
from line 21
2121
2222### Headers
2323
24- `"anthropic-version": optional string`
25
26 The version of the Claude API you want to use.
27
28 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
29
3024- `"x-api-key": optional string`
3125
3226### Returns
from line 63
6963
7064```bash
7165curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
66 -H 'anthropic-version: 2023-06-01' \
7267 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7368```
7469
from line 101
106101
107102### Headers
108103
109- `"anthropic-version": optional string`
110
111 The version of the Claude API you want to use.
112
113 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
114
115104- `"x-api-key": optional string`
116105
117106### Returns
from line 120
131120```bash
132121curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
133122 -X DELETE \
123 -H 'anthropic-version: 2023-06-01' \
134124 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
135125```
136126
from line 147
157147
158148### Headers
159149
160- `"anthropic-version": optional string`
161
162 The version of the Claude API you want to use.
163
164 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
165
166150- `"x-api-key": optional string`
167151
168152### Example
from line 153
169153
170154```bash
171155curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID/content \
156 -H 'anthropic-version: 2023-06-01' \
172157 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
173158```
174159