Source Intelligence
Sweep 28 Aug 2026 ยท 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

List RBAC Group Members

api/admin/rbac_groups/members/list

first seen The page's own history The capture it came from

Nearest release: v2.1.245, published 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.

api/admin/rbac_groups/members/list Changed · +14 / -15 lines

# List RBAC Group Members ## Path parameters ## Query parameters ## Headers ## Returns ## Example ### Response (200) ## List RBAC Group Members ### Path Parameters ### Query Parameters ### Header Parameters ### Returns ### Example #### Response

from line 1
----
-title: List RBAC Group Members
-url: https://platform.claude.com/docs/en/api/admin/rbac_groups/members/list
----
+# List RBAC Group Members
 
-## List RBAC Group Members
+**GET** `/v1/organizations/rbac_groups/{group_id}/members`
 
-**get** `/v1/organizations/rbac_groups/{group_id}/members`
-
 List members of an RBAC Group.
 
 The RBAC Groups API is in beta and available to Claude Enterprise organizations only. Requests must send the `ce-user-management-2026-07-13` value in the `anthropic-beta` header.
 
-### Path Parameters
+## Path parameters
 
 - `group_id: string`
 
   ID of the RBAC Group.
 
-### Query Parameters
+## Query parameters
 
 - `limit: optional number`
 
from line 20
 
   Defaults to `20`. Ranges from `1` to `1000`.
 
+  default: 20, maximum: 1000, minimum: 1
+
 - `page: optional string`
 
   Optionally set to the `next_page` token from the previous response.
 
-### Header Parameters
+## Headers
 
 - `"anthropic-beta": optional array of string`
 
from line 34
 
   To use multiple betas, use a comma separated list like `beta1,beta2` or specify the header multiple times for each beta.
 
-### Returns
+## Returns
 
 - `data: array of RbacGroupMember`
 
from line 42
 
     RFC 3339 timestamp of when the User was added to the RBAC Group.
 
+    format: date-time
+
   - `email: string`
 
     Email of the User.
from line 58
 
     For RBAC Group Members, this is always `"rbac_group_member"`.
 
-    - `"rbac_group_member"`
+    default: rbac_group_member
 
   - `user_id: string`
 
from line 72
 
   Token to provide in as `page` in the subsequent request to retrieve the next page of data.
 
-### Example
+## Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
     -H 'anthropic-version: 2023-06-01' \
     -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
 ```
 
-#### Response
+### Response (200)
 
 ```json
 {