Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

List Compliance Group Members changed

api/compliance/groups/members/list

Nearest release: v2.1.268, published under an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+19added
Lines−4removed
From line 1 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits4to this page, all time

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",
7388 "email": "[email protected]",
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 ],