The whole hunk
from line 1, old and new numbered
/
lines
from line 1
1---
2title: List Compliance Groups
3url: https://platform.claude.com/docs/en/api/compliance/groups/list
4---
5
16# List Compliance Groups
27
38**GET** `/v1/compliance/groups`
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 Group creation timestamp (ISO 8601)
52 Group creation timestamp (RFC 3339)
4253
54 format: date-time
55
4356 - `description: string`
4457
4558 Group description
from line 71
5871
5972 - `updated_at: string or null`
6073
61 Group last-updated timestamp (ISO 8601)
74 Group last-updated timestamp (RFC 3339)
6275
76 format: date-time
77
6378- `has_more: boolean`
6479
6580 Whether more records exist beyond the current result set
from line 97
8297 "data": [
8398 {
8499 "id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
85 "created_at": "2025-03-12T18:22:41.123456",
100 "created_at": "2025-03-12T18:22:41.123456Z",
86101 "description": "All members of the engineering organization",
87102 "name": "Engineering Team",
88103 "roles": [
from line 105
90105 "rbac_role_01HtCd4mFoAseWS3RnzKcwE7"
91106 ],
92107 "source_type": "scim",
93 "updated_at": "2025-03-14T09:05:17.456789"
108 "updated_at": "2025-03-14T09:05:17.456789Z"
94109 }
95110 ],
96111 "has_more": true,