The whole hunk
from line 1, old and new numbered
/
lines
from line 1
1---
2title: Get Compliance Group
3url: https://platform.claude.com/docs/en/api/compliance/groups/retrieve
4---
5
16# Get Compliance Group
27
38**GET** `/v1/compliance/groups/{group_id}`
from line 17
1217
1318## Headers
1419
20- `"anthropic-version": optional string`
21
22 The version of the Claude API you want to use.
23
24 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
25
1526- `"x-api-key": optional string`
1627
1728## Returns
from line 33
2233
2334- `created_at: string or null`
2435
25 Group creation timestamp (ISO 8601)
36 Group creation timestamp (RFC 3339)
2637
38 format: date-time
39
2740- `description: string`
2841
2942 Group description
from line 55
4255
4356- `updated_at: string or null`
4457
45 Group last-updated timestamp (ISO 8601)
58 Group last-updated timestamp (RFC 3339)
4659
60 format: date-time
61
4762## Example
4863
4964```bash
from line 71
5671```json
5772{
5873 "id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
59 "created_at": "2025-03-12T18:22:41.123456",
74 "created_at": "2025-03-12T18:22:41.123456Z",
6075 "description": "All members of the engineering organization",
6176 "name": "Engineering Team",
6277 "roles": [
from line 79
6479 "rbac_role_01HtCd4mFoAseWS3RnzKcwE7"
6580 ],
6681 "source_type": "scim",
67 "updated_at": "2025-03-14T09:05:17.456789"
82 "updated_at": "2025-03-14T09:05:17.456789Z"
6883}
6984```
7085