The whole hunk
from line 74, old and new numbered
/
lines
from line 74
7474
7575### Headers
7676
77- `"anthropic-version": optional string`
78
79 The version of the Claude API you want to use.
80
81 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
82
8377- `"x-api-key": optional string`
8478
8579### Returns
from line 163
169163
170164```bash
171165curl https://api.anthropic.com/v1/compliance/apps/code/artifacts \
166 -H 'anthropic-version: 2023-06-01' \
172167 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
173168```
174169
from line 226
231226
232227### Headers
233228
234- `"anthropic-version": optional string`
235
236 The version of the Claude API you want to use.
237
238 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
239
240229- `"x-api-key": optional string`
241230
242231### Example
from line 232
243232
244233```bash
245234curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID/versions/$VERSION_ID \
235 -H 'anthropic-version: 2023-06-01' \
246236 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
247237```
248238
from line 257
267257
268258### Headers
269259
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
276260- `"x-api-key": optional string`
277261
278262### Returns
from line 276
292276```bash
293277curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID \
294278 -X DELETE \
279 -H 'anthropic-version: 2023-06-01' \
295280 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
296281```
297282