The whole hunk
from line 1, old and new numbered
/
lines
from line 1
1---
2title: List Compliance Roles
3url: https://platform.claude.com/docs/en/api/compliance/organizations/roles/list
4---
5
16# List Compliance Roles
27
38**GET** `/v1/compliance/organizations/{org_uuid}/roles`
from line 29
2429
2530## Headers
2631
32- `"anthropic-version": optional string`
33
34 The version of the Claude API you want to use.
35
36 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
37
2738- `"x-api-key": optional string`
2839
2940## Returns
from line 49
3849
3950 - `created_at: string or null`
4051
41 Role creation timestamp (ISO 8601)
52 Role creation timestamp (RFC 3339)
4253
54 format: date-time
55
4356 - `description: string`
4457
4558 Role description
from line 63
5063
5164 - `updated_at: string or null`
5265
53 Role last-updated timestamp (ISO 8601)
66 Role last-updated timestamp (RFC 3339)
5467
68 format: date-time
69
5570- `has_more: boolean`
5671
5772 Whether more records exist beyond the current result set
from line 89
7489 "data": [
7590 {
7691 "id": "rbac_role_01SGBg3kEnZrdsVR2QmyJbvD",
77 "created_at": "2025-03-12T18:22:41.123456",
92 "created_at": "2025-03-12T18:22:41.123456Z",
7893 "description": "Full administrative access to organization settings and members",
7994 "name": "Organization Admin",
80 "updated_at": "2025-03-14T09:05:17.456789"
95 "updated_at": "2025-03-14T09:05:17.456789Z"
8196 }
8297 ],
8398 "has_more": true,