The whole hunk
from line 31, old and new numbered
/
lines
from line 31
3131
3232### Headers
3333
34- `"anthropic-version": optional string`
35
36 The version of the Claude API you want to use.
37
38 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
39
4034- `"x-api-key": optional string`
4135
4236### Returns
from line 83
8983
9084```bash
9185curl https://api.anthropic.com/v1/compliance/groups \
86 -H 'anthropic-version: 2023-06-01' \
9287 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
9388```
9489
from line 124
129124
130125### Headers
131126
132- `"anthropic-version": optional string`
133
134 The version of the Claude API you want to use.
135
136 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
137
138127- `"x-api-key": optional string`
139128
140129### Returns
from line 164
175164
176165```bash
177166curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID \
167 -H 'anthropic-version: 2023-06-01' \
178168 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
179169```
180170
from line 291
301291
302292#### Headers
303293
304- `"anthropic-version": optional string`
305
306 The version of the Claude API you want to use.
307
308 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
309
310294- `"x-api-key": optional string`
311295
312296#### Returns
from line 331
347331
348332```bash
349333curl https://api.anthropic.com/v1/compliance/groups/$GROUP_ID/members \
334 -H 'anthropic-version: 2023-06-01' \
350335 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
351336```
352337