The whole hunk
from line 116, old and new numbered
/
lines
from line 116
116116
117117### Headers
118118
119- `"anthropic-version": optional string`
120
121 The version of the Claude API you want to use.
122
123 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
124
125119- `"x-api-key": optional string`
126120
127121### Returns
from line 214
220214
221215```bash
222216curl https://api.anthropic.com/v1/compliance/apps/chats \
217 -H 'anthropic-version: 2023-06-01' \
223218 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
224219```
225220
from line 260
265260
266261### Headers
267262
268- `"anthropic-version": optional string`
269
270 The version of the Claude API you want to use.
271
272 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
273
274263- `"x-api-key": optional string`
275264
276265### Returns
from line 279
290279```bash
291280curl https://api.anthropic.com/v1/compliance/apps/chats/$CLAUDE_CHAT_ID \
292281 -X DELETE \
282 -H 'anthropic-version: 2023-06-01' \
293283 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
294284```
295285
from line 496
506496
507497#### Headers
508498
509- `"anthropic-version": optional string`
510
511 The version of the Claude API you want to use.
512
513 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
514
515499- `"x-api-key": optional string`
516500
517501#### Returns
from line 796
812796
813797```bash
814798curl https://api.anthropic.com/v1/compliance/apps/chats/$CLAUDE_CHAT_ID/messages \
799 -H 'anthropic-version: 2023-06-01' \
815800 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
816801```
817802
from line 883
898883
899884#### Headers
900885
901- `"anthropic-version": optional string`
902
903 The version of the Claude API you want to use.
904
905 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
906
907886- `"x-api-key": optional string`
908887
909888#### Returns
from line 925
946925
947926```bash
948927curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
928 -H 'anthropic-version: 2023-06-01' \
949929 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
950930```
951931
from line 963
983963
984964#### Headers
985965
986- `"anthropic-version": optional string`
987
988 The version of the Claude API you want to use.
989
990 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
991
992966- `"x-api-key": optional string`
993967
994968#### Returns
from line 982
1008982```bash
1009983curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
1010984 -X DELETE \
985 -H 'anthropic-version: 2023-06-01' \
1011986 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
1012987```
1013988
from line 1009
10341009
10351010#### Headers
10361011
1037- `"anthropic-version": optional string`
1038
1039 The version of the Claude API you want to use.
1040
1041 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1042
10431012- `"x-api-key": optional string`
10441013
10451014#### Example
from line 1015
10461015
10471016```bash
10481017curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID/content \
1018 -H 'anthropic-version: 2023-06-01' \
10491019 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
10501020```
10511021
from line 1037
10671037
10681038#### Headers
10691039
1070- `"anthropic-version": optional string`
1071
1072 The version of the Claude API you want to use.
1073
1074 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1075
10761040- `"x-api-key": optional string`
10771041
10781042#### Returns
from line 1075
11111075
11121076```bash
11131077curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID \
1078 -H 'anthropic-version: 2023-06-01' \
11141079 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
11151080```
11161081
from line 1107
11421107
11431108#### Headers
11441109
1145- `"anthropic-version": optional string`
1146
1147 The version of the Claude API you want to use.
1148
1149 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1150
11511110- `"x-api-key": optional string`
11521111
11531112#### Example
from line 1113
11541113
11551114```bash
11561115curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID/content \
1116 -H 'anthropic-version: 2023-06-01' \
11571117 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
11581118```
11591119