The whole hunk
from line 1, old and new numbered
/
lines
from line 1
1---
2title: List Compliance Group Members
3url: https://platform.claude.com/docs/en/api/compliance/groups/members/list
4---
5
16# List Compliance Group Members
27
38**GET** `/v1/compliance/groups/{group_id}/members`
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 45
3445
3546 - `created_at: string or null`
3647
37 Membership creation timestamp (ISO 8601)
48 Membership creation timestamp (RFC 3339)
3849
50 format: date-time
51
3952 - `email: string`
4053
4154 Member email address
from line 55
4255
4356 - `updated_at: string or null`
4457
45 Membership last-updated timestamp (ISO 8601)
58 Membership last-updated timestamp (RFC 3339)
4659
60 format: date-time
61
4762 - `user_id: string`
4863
4964 Member user identifier (tagged ID)
from line 84
6984{
7085 "data": [
7186 {
72 "created_at": "2025-03-12T18:22:41.123456",
87 "created_at": "2025-03-12T18:22:41.123456Z",
74 "updated_at": "2025-03-14T09:05:17.456789",
89 "updated_at": "2025-03-14T09:05:17.456789Z",
7590 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
7691 }
7792 ],