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 75
8175
8276```bash
8377curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/roles \
78 -H 'anthropic-version: 2023-06-01' \
8479 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
8580```
8681
from line 115
120115
121116### Headers
122117
123- `"anthropic-version": optional string`
124
125 The version of the Claude API you want to use.
126
127 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
128
129118- `"x-api-key": optional string`
130119
131120### Returns
from line 147
158147
159148```bash
160149curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/roles/$ROLE_ID \
150 -H 'anthropic-version: 2023-06-01' \
161151 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
162152```
163153
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 289
305289
306290```bash
307291curl https://api.anthropic.com/v1/compliance/organizations/$ORG_UUID/roles/$ROLE_ID/permissions \
292 -H 'anthropic-version: 2023-06-01' \
308293 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
309294```
310295