What this read moved
26–50 of 118This capture is too large to show at once. Changes 26-50 of 118 are below, significant first; the rest are on the following screens.
api/compliance/activities/list Changed · +1989 / -1432 lines
This page is larger than the 256 KiB this site keeps, so one side of the diff below stops where the stored text does.
from line 15
1515
1616## Query parameters
1717
18- `activity_types: optional array of "abuse_decision_received" or "account_deleted" or "admin_api_key_created" or 490 more`
18- `activity_types: optional array of "abuse_decision_received" or "account_deleted" or "admin_api_key_created" or 492 more`
1919
2020 Filter activities by type. See the response `data` schema for the additional fields each type returns. Cannot be combined with `exclude_activity_types[]`.
2121
from line 183
183183
184184 A Claude Code agent's configuration was updated. Also emitted with updated_fields ["is_virtual"] alone when an auto-provisioned agent is promoted to a configured one, whether by an update request targeting it or by binding an agent proxy profile to it.
185185
186 - `"ccr_channel_manager_added"`
187
188 An org owner/admin assigned an organization member to manage the Claude-in-Slack configuration of one Slack channel.
189
190 - `"ccr_channel_manager_removed"`
191
192 An org owner/admin removed an organization member's assignment to manage the Claude-in-Slack configuration of one Slack channel.
193
186194 - `"ccr_role_channel_assignment_deleted"`
187195
188196 CcrRoleChannelAssignmentDeleted is emitted when an org owner/admin removes an RBAC role's channel assignment row (the role reverts to granting zero channels).
from line 2054
20462054
20472055 format: date-time
20482056
2049- `exclude_activity_types: optional array of "abuse_decision_received" or "account_deleted" or "admin_api_key_created" or 490 more`
2057- `exclude_activity_types: optional array of "abuse_decision_received" or "account_deleted" or "admin_api_key_created" or 492 more`
20502058
20512059 Exclude activities of these types. Cannot be combined with `activity_types[]`.
20522060
from line 2222
22142222
22152223 A Claude Code agent's configuration was updated. Also emitted with updated_fields ["is_virtual"] alone when an auto-provisioned agent is promoted to a configured one, whether by an update request targeting it or by binding an agent proxy profile to it.
22162224
2225 - `"ccr_channel_manager_added"`
2226
2227 An org owner/admin assigned an organization member to manage the Claude-in-Slack configuration of one Slack channel.
2228
2229 - `"ccr_channel_manager_removed"`
2230
2231 An org owner/admin removed an organization member's assignment to manage the Claude-in-Slack configuration of one Slack channel.
2232
22172233 - `"ccr_role_channel_assignment_deleted"`
22182234
22192235 CcrRoleChannelAssignmentDeleted is emitted when an org owner/admin removes an RBAC role's channel assignment row (the role reverts to granting zero channels).
from line 4081
40654081
40664082## Headers
40674083
4068- `"anthropic-version": optional string`
4069
4070 The version of the Claude API you want to use.
4071
4072 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
4073
40744084- `"x-api-key": optional string`
40754085
40764086## Returns
40774087
4078- `data: optional array of AbuseDecisionReceived or AccountDeleted or AdminAPIKeyCreated or 490 more`
4088- `data: optional array of AbuseDecisionReceived or AccountDeleted or AdminAPIKeyCreated or 492 more`
40794089
40804090 List of activity records. Each element's `type` field identifies which activity it is and which additional fields are present.
40814091
from line 7427
74177427
74187428 The artifact's identifier.
74197429
7420 - `comment_action: "activate_thread" or "create_thread" or "deactivate_thread" or 9 more`
7430 - `comment_action: "activate_thread" or "create_thread" or "deactivate_thread" or 10 more`
74217431
74227432 The action recorded: for example a new comment thread, a reply to an existing thread, a thread resolved, reopened, or deleted, a thread's Claude activation granted or revoked, a comment's text rewritten by its author, an existing comment sent to Claude or withdrawn from Claude, or a thread resolved by a Claude session.
74237433
from line 7441
74317441
74327442 - `"edit_comment"`
74337443
7444 - `"move_thread"`
7445
74347446 - `"reopen"`
74357447
74367448 - `"reply"`
from line 9972
99609972
99619973 Organization UUID where the activity occurred. Null when the activity is not tied to an organization (for example, login and logout events or calls to the Compliance API).
99629974
9963 - `slack_alias: optional string or null`
9964
9965 The Slack trigger word that routes mentions to this agent. An empty value means the agent responds to bare "@Claude" mentions. Omitted when the agent is not addressable from Slack.
9966
9967 - `CcrAgentDeleted object`
9968
9969 A Claude Code agent was deleted.
9970
9971 - `type: optional "ccr_agent_deleted"`
9972
9973 default: ccr_agent_deleted
9974
9975 - `actor: APIActor or UserActor or UnauthenticatedUserActor or 8 more`
9976
9977 - `APIActor object`
9978
9979 - `type: optional "api_act
9975 - `slack_alias: optional string or nu
api/compliance/apps Changed · +31 / -144 lines
from line 118
118118
119119#### Headers
120120
121- `"anthropic-version": optional string`
122
123 The version of the Claude API you want to use.
124
125 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
126
127121- `"x-api-key": optional string`
128122
129123#### Returns
from line 216
222216
223217```bash
224218curl https://api.anthropic.com/v1/compliance/apps/chats \
219 -H 'anthropic-version: 2023-06-01' \
225220 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
226221```
227222
from line 262
267262
268263#### Headers
269264
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
276265- `"x-api-key": optional string`
277266
278267#### Returns
from line 281
292281```bash
293282curl https://api.anthropic.com/v1/compliance/apps/chats/$CLAUDE_CHAT_ID \
294283 -X DELETE \
284 -H 'anthropic-version: 2023-06-01' \
295285 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
296286```
297287
from line 400
410400
411401#### Headers
412402
413- `"anthropic-version": optional string`
414
415 The version of the Claude API you want to use.
416
417 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
418
419403- `"x-api-key": optional string`
420404
421405#### Returns
from line 700
716700
717701```bash
718702curl https://api.anthropic.com/v1/compliance/apps/chats/$CLAUDE_CHAT_ID/messages \
703 -H 'anthropic-version: 2023-06-01' \
719704 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
720705```
721706
from line 787
802787
803788#### Headers
804789
805- `"anthropic-version": optional string`
806
807 The version of the Claude API you want to use.
808
809 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
810
811790- `"x-api-key": optional string`
812791
813792#### Returns
from line 829
850829
851830```bash
852831curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
832 -H 'anthropic-version: 2023-06-01' \
853833 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
854834```
855835
from line 867
887867
888868#### Headers
889869
890- `"anthropic-version": optional string`
891
892 The version of the Claude API you want to use.
893
894 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
895
896870- `"x-api-key": optional string`
897871
898872#### Returns
from line 886
912886```bash
913887curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
914888 -X DELETE \
889 -H 'anthropic-version: 2023-06-01' \
915890 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
916891```
917892
from line 913
938913
939914#### Headers
940915
941- `"anthropic-version": optional string`
942
943 The version of the Claude API you want to use.
944
945 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
946
947916- `"x-api-key": optional string`
948917
949918#### Example
from line 919
950919
951920```bash
952921curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID/content \
922 -H 'anthropic-version: 2023-06-01' \
953923 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
954924```
955925
from line 941
971941
972942#### Headers
973943
974- `"anthropic-version": optional string`
975
976 The version of the Claude API you want to use.
977
978 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
979
980944- `"x-api-key": optional string`
981945
982946#### Returns
from line 979
1015979
1016980```bash
1017981curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID \
982 -H 'anthropic-version: 2023-06-01' \
1018983 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
1019984```
1020985
from line 1011
10461011
10471012#### Headers
10481013
1049- `"anthropic-version": optional string`
1050
1051 The version of the Claude API you want to use.
1052
1053 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1054
10551014- `"x-api-key": optional string`
10561015
10571016#### Example
from line 1017
10581017
10591018```bash
10601019curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID/content \
1020 -H 'anthropic-version: 2023-06-01' \
10611021 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
10621022```
10631023
from line 1104
11441104
11451105#### Headers
11461106
1147- `"anthropic-version": optional string`
1148
1149 The version of the Claude API you want to use.
1150
1151 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1152
11531107- `"x-api-key": optional string`
11541108
11551109#### Returns
from line 1180
12261180
12271181```bash
12281182curl https://api.anthropic.com/v1/compliance/apps/projects \
1183 -H 'anthropic-version: 2023-06-01' \
12291184 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
12301185```
12311186
from line 1222
12671222
12681223#### Headers
12691224
1270- `"anthropic-version": optional string`
1271
1272 The version of the Claude API you want to use.
1273
1274 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1275
12761225- `"x-api-key": optional string`
12771226
12781227#### Returns
from line 1302
13531302
13541303```bash
13551304curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
1305 -H 'anthropic-version: 2023-06-01' \
13561306 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
13571307```
13581308
from line 1352
14021352
14031353#### Headers
14041354
1405- `"anthropic-version": optional string`
1406
1407 The version of the Claude API you want to use.
1408
1409 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1410
14111355- `"x-api-key": optional string`
14121356
14131357#### Returns
from line 1371
14271371```bash
14281372curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
14291373 -X DELETE \
1374 -H 'anthropic-version: 2023-06-01' \
14301375 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
14311376```
14321377
from line 1421
14761421
14771422#### Headers
14781423
1479- `"anthropic-version": optional string`
1480
1481 The version of the Claude API you want to use.
1482
1483 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1484
14851424- `"x-api-key": optional string`
14861425
14871426#### Returns
from line 1513
15741513
15751514```bash
15761515curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/attachments \
1516 -H 'anthropic-version: 2023-06-01' \
15771517 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
15781518```
15791519
from line 1570
16301570
16311571#### Headers
16321572
1633- `"anthropic-version": optional string`
1634
1635 The version of the Claude API you want to use.
1636
1637 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1638
16391573- `"x-api-key": optional string`
16401574
16411575#### Returns
from line 1718
17841718
17851719```bash
17861720curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/collaborators \
1721 -H 'anthropic-version: 2023-06-01' \
17871722 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
17881723```
17891724
from line 1755
18201755
18211756#### Headers
18221757
1823- `"anthropic-version": optional string`
1824
1825 The version of the Claude API you want to use.
1826
1827 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1828
18291758- `"x-api-key": optional string`
18301759
18311760#### Returns
from line 1797
18681797
18691798```bash
18701799curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
1800 -H 'anthropic-version: 2023-06-01' \
18711801 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
18721802```
18731803
from line 1835
19051835
19061836#### Headers
19071837
1908- `"anthropic-version": optional string`
1909
1910 The version of the Claude API you want to use.
1911
1912 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
1913
19141838- `"x-api-key": optional string`
19151839
19161840#### Returns
from line 1891
19671891
19681892```bash
19691893curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID/metadata \
1894 -H 'anthropic-version: 2023-06-01' \
19701895 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
19711896```
19721897
from line 1929
20041929
20051930#### Headers
20061931
2007- `"anthropic-version": optional string`
2008
2009 The version of the Claude API you want to use.
2010
2011 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2012
20131932- `"x-api-key": optional string`
20141933
20151934#### Returns
from line 1948
20291948```bash
20301949curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
20311950 -X DELETE \
1951 -H 'anthropic-version: 2023-06-01' \
20321952 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
20331953```
20341954
from line 1982
20621982
20631983#### Headers
20641984
2065- `"anthropic-version": optional string`
2066
2067 The version of the Claude API you want to use.
2068
2069 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2070
20711985- `"x-api-key": optional string`
20721986
20731987#### Returns
from line 2024
21102024
21112025```bash
21122026curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID \
2027 -H 'anthropic-version: 2023-06-01' \
21132028 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
21142029```
21152030
from line 2059
21442059
21452060#### Headers
21462061
2147- `"anthropic-version": optional string`
2148
2149 The version of the Claude API you want to use.
2150
2151 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2152
21532062- `"x-api-key": optional string`
21542063
21552064#### Example
from line 2065
21562065
21572066```bash
21582067curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID/content \
2068 -H 'anthropic-version: 2023-06-01' \
21592069 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
21602070```
21612071
from line 2116
22062116
22072117#### Headers
22082118
2209- `"anthropic-version": optional string`
2210
2211 The version of the Claude API you want to use.
2212
2213 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2214
22152119- `"x-api-key": optional string`
22162120
22172121#### Returns
from line 2182
22782182
22792183```bash
22802184curl https://api.anthropic.com/v1/compliance/apps/sessions/local \
2185 -H 'anthropic-version: 2023-06-01' \
22812186 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
22822187```
22832188
from line 2225
23202225
23212226#### Headers
23222227
2323- `"anthropic-version": optional string`
2324
2325 The version of the Claude API you want to use.
2326
2327 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2328
23292228- `"x-api-key": optional string`
23302229
23312230#### Returns
from line 2283
23842283
23852284```bash
23862285curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID \
2286 -H 'anthropic-version: 2023-06-01' \
23872287 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
23882288```
23892289
from line 2361
24612361
24622362#### Headers
24632363
2464- `"anthropic-version": optional string`
2465
2466 The version of the Claude API you want to use.
2467
2468 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2469
24702364- `"x-api-key": optional string`
24712365
24722366#### Returns
from line 2506
26122506 A transcript marker generated by the endpoint rather than sent by
26132507 either party during the session. Marker messages indicate that the
26142508 prompt history diverged from what was captured, that the request's
2615 `system` field was present but is not shown, or that
2616 prompt-carried history was suppressed because the session spans the
2617 child organization's retention boundary and those turns cannot be
2618 placed against it (the marker's text names the cause). Markers that
2619 report a mismatch with captured history can result from normal request
2620 or client processing, not only client modification.
2509 `system` field was present but is not shown, or that earlier turns
2510 that a request re-sent as history were withheld because they cannot
2511 be dated against the child organization's data-retention period
2512 (only for organizations with a finite retention period; the request's
2513 new user input after its last assistant turn is not affected). The
2514 marker's text names the cause. Markers that report a mismatch with
2515 captured history can result from normal request or client processing,
2516 not only client modification.
26212517
26222518 - `type: "synthetic_marker"`
26232519
from line 2589
26932589
26942590```bash
26952591curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID/messages \
2592 -H 'anthropic-version: 2023-06-01' \
26962593 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
26972594```
26982595
from line 2711
28142711
28152712#### Headers
28162713
2817- `"anthropic-version": optional string`
2818
2819 The version of the Claude API you want to use.
2820
2821 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2822
28232714- `"x-api-key": optional string`
28242715
28252716#### Returns
from line 2785
28942785
28952786```bash
28962787curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
2788 -H 'anthropic-version: 2023-06-01' \
28972789 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
28982790```
28992791
from line 2881
29892881
29902882#### Headers
29912883
2992- `"anthropic-version": optional string`
2993
2994 The version of the Claude API you want to use.
2995
2996 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
2997
29982884- `"x-api-key": optional string`
29992885
30002886#### Returns
from line 3075
31893075
31903076```bash
31913077curl https://api.anthropic.com/v1/compliance/apps/sessions/remote/$CLAUDE_REMOTE_SESSION_ID/messages \
3078 -H 'anthropic-version: 2023-06-01' \
31923079 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
31933080```
31943081
api/compliance/apps/artifacts Changed · +2 / -12 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 66
7266
7367```bash
7468curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID \
69 -H 'anthropic-version: 2023-06-01' \
7570 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7671```
7772
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### Example
from line 107
118107
119108```bash
120109curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID/content \
110 -H 'anthropic-version: 2023-06-01' \
121111 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
122112```
123113
api/compliance/apps/artifacts/download Changed · +1 / -6 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## Example
from line 25
3125
3226```bash
3327curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID/content \
28 -H 'anthropic-version: 2023-06-01' \
3429 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
3530```
3631
api/compliance/apps/artifacts/retrieve 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 64
7064
7165```bash
7266curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID \
67 -H 'anthropic-version: 2023-06-01' \
7368 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7469```
7570
api/compliance/apps/chats Changed · +8 / -48 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
api/compliance/apps/chats/delete Changed · +1 / -6 lines
from line 18
1818
1919## Headers
2020
21- `"anthropic-version": optional string`
22
23 The version of the Claude API you want to use.
24
25 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
26
2721- `"x-api-key": optional string`
2822
2923## Returns
from line 37
4337```bash
4438curl https://api.anthropic.com/v1/compliance/apps/chats/$CLAUDE_CHAT_ID \
4539 -X DELETE \
40 -H 'anthropic-version: 2023-06-01' \
4641 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
4742```
4843
api/compliance/apps/chats/files Changed · +3 / -18 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
api/compliance/apps/chats/files/delete Changed · +1 / -6 lines
from line 18
1818
1919## Headers
2020
21- `"anthropic-version": optional string`
22
23 The version of the Claude API you want to use.
24
25 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
26
2721- `"x-api-key": optional string`
2822
2923## Returns
from line 37
4337```bash
4438curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
4539 -X DELETE \
40 -H 'anthropic-version: 2023-06-01' \
4641 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
4742```
4843
api/compliance/apps/chats/files/download 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## Example
from line 23
2923
3024```bash
3125curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID/content \
26 -H 'anthropic-version: 2023-06-01' \
3227 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
3328```
3429
api/compliance/apps/chats/files/retrieve Changed · +1 / -6 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/chats/files/$CLAUDE_FILE_ID \
64 -H 'anthropic-version: 2023-06-01' \
7065 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7166```
7267
api/compliance/apps/chats/generated_files Changed · +2 / -12 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 59
6559
6660```bash
6761curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID \
62 -H 'anthropic-version: 2023-06-01' \
6863 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
6964```
7065
from line 91
9691
9792### Headers
9893
99- `"anthropic-version": optional string`
100
101 The version of the Claude API you want to use.
102
103 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
104
10594- `"x-api-key": optional string`
10695
10796### Example
from line 97
10897
10998```bash
11099curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID/content \
100 -H 'anthropic-version: 2023-06-01' \
111101 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
112102```
113103
api/compliance/apps/chats/generated_files/download 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## Example
from line 23
2923
3024```bash
3125curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID/content \
26 -H 'anthropic-version: 2023-06-01' \
3227 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
3328```
3429
api/compliance/apps/chats/generated_files/retrieve Changed · +1 / -6 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 57
6357
6458```bash
6559curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID \
60 -H 'anthropic-version: 2023-06-01' \
6661 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
6762```
6863
api/compliance/apps/chats/list Changed · +1 / -6 lines
from line 114
114114
115115## Headers
116116
117- `"anthropic-version": optional string`
118
119 The version of the Claude API you want to use.
120
121 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
122
123117- `"x-api-key": optional string`
124118
125119## Returns
from line 212
218212
219213```bash
220214curl https://api.anthropic.com/v1/compliance/apps/chats \
215 -H 'anthropic-version: 2023-06-01' \
221216 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
222217```
223218
api/compliance/apps/chats/messages Changed · +1 / -6 lines
from line 109
109109
110110### Headers
111111
112- `"anthropic-version": optional string`
113
114 The version of the Claude API you want to use.
115
116 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
117
118112- `"x-api-key": optional string`
119113
120114### Returns
from line 409
415409
416410```bash
417411curl https://api.anthropic.com/v1/compliance/apps/chats/$CLAUDE_CHAT_ID/messages \
412 -H 'anthropic-version: 2023-06-01' \
418413 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
419414```
420415
api/compliance/apps/chats/messages/list Changed · +1 / -6 lines
from line 107
107107
108108## Headers
109109
110- `"anthropic-version": optional string`
111
112 The version of the Claude API you want to use.
113
114 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
115
116110- `"x-api-key": optional string`
117111
118112## Returns
from line 407
413407
414408```bash
415409curl https://api.anthropic.com/v1/compliance/apps/chats/$CLAUDE_CHAT_ID/messages \
410 -H 'anthropic-version: 2023-06-01' \
416411 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
417412```
418413
api/compliance/apps/projects Changed · +8 / -48 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
api/compliance/apps/projects/attachments Changed · +1 / -6 lines
from line 40
4040
4141### Headers
4242
43- `"anthropic-version": optional string`
44
45 The version of the Claude API you want to use.
46
47 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
48
4943- `"x-api-key": optional string`
5044
5145### Returns
from line 132
138132
139133```bash
140134curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/attachments \
135 -H 'anthropic-version: 2023-06-01' \
141136 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
142137```
143138
api/compliance/apps/projects/attachments/list Changed · +1 / -6 lines
from line 38
3838
3939## Headers
4040
41- `"anthropic-version": optional string`
42
43 The version of the Claude API you want to use.
44
45 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
46
4741- `"x-api-key": optional string`
4842
4943## Returns
from line 130
136130
137131```bash
138132curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/attachments \
133 -H 'anthropic-version: 2023-06-01' \
139134 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
140135```
141136
api/compliance/apps/projects/collaborators Changed · +1 / -6 lines
from line 36
3636
3737### Headers
3838
39- `"anthropic-version": optional string`
40
41 The version of the Claude API you want to use.
42
43 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
44
4539- `"x-api-key": optional string`
4640
4741### Returns
from line 184
190184
191185```bash
192186curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/collaborators \
187 -H 'anthropic-version: 2023-06-01' \
193188 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
194189```
195190
api/compliance/apps/projects/collaborators/list Changed · +1 / -6 lines
from line 34
3434
3535## Headers
3636
37- `"anthropic-version": optional string`
38
39 The version of the Claude API you want to use.
40
41 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
42
4337- `"x-api-key": optional string`
4438
4539## Returns
from line 182
188182
189183```bash
190184curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID/collaborators \
185 -H 'anthropic-version: 2023-06-01' \
191186 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
192187```
193188
api/compliance/apps/projects/delete Changed · +1 / -6 lines
from line 26
2626
2727## Headers
2828
29- `"anthropic-version": optional string`
30
31 The version of the Claude API you want to use.
32
33 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
34
3529- `"x-api-key": optional string`
3630
3731## Returns
from line 45
5145```bash
5246curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
5347 -X DELETE \
48 -H 'anthropic-version: 2023-06-01' \
5449 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
5550```
5651
api/compliance/apps/projects/documents Changed · +3 / -18 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
api/compliance/apps/projects/documents/delete Changed · +1 / -6 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 38
4438```bash
4539curl https://api.anthropic.com/v1/compliance/apps/projects/documents/$DOCUMENT_ID \
4640 -X DELETE \
41 -H 'anthropic-version: 2023-06-01' \
4742 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
4843```
4944