The whole hunk
from line 1, old and new numbered
/
lines
from line 1
1---
2title: Get Compliance Role
3url: https://platform.claude.com/docs/en/api/compliance/organizations/roles/retrieve
4---
5
16# Get Compliance Role
27
38**GET** `/v1/compliance/organizations/{org_uuid}/roles/{role_id}`
from line 21
1621
1722## Headers
1823
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
1930- `"x-api-key": optional string`
2031
2132## Returns
from line 37
2637
2738- `created_at: string or null`
2839
29 Role creation timestamp (ISO 8601)
40 Role creation timestamp (RFC 3339)
3041
42 format: date-time
43
3144- `description: string`
3245
3346 Role description
from line 51
3851
3952- `updated_at: string or null`
4053
41 Role last-updated timestamp (ISO 8601)
54 Role last-updated timestamp (RFC 3339)
4255
56 format: date-time
57
4358## Example
4459
4560```bash
from line 67
5267```json
5368{
5469 "id": "rbac_role_01SGBg3kEnZrdsVR2QmyJbvD",
55 "created_at": "2025-03-12T18:22:41.123456",
70 "created_at": "2025-03-12T18:22:41.123456Z",
5671 "description": "Full administrative access to organization settings and members",
5772 "name": "Organization Admin",
58 "updated_at": "2025-03-14T09:05:17.456789"
73 "updated_at": "2025-03-14T09:05:17.456789Z"
5974}
6075```
6176