Follow Discord
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 project collaborators changed

api/compliance/apps/projects/collaborators/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+47added
Lines−36removed
From line 1 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits5to this page, all time

The whole hunk

from line 1, old and new numbered
/
lines
from line 1
1---
2title: List project collaborators
3url: https://platform.claude.com/docs/en/api/compliance/apps/projects/collaborators/list
4---
5 
16# List project collaborators
27 
38**GET** `/v1/compliance/apps/projects/{project_id}/collaborators`
from line 34
2934 
3035## Headers
3136 
37- `"anthropic-version": optional string`
38 
39 The version of the Claude API you want to use.
40 
41 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
42 
3243- `"x-api-key": optional string`
3344 
3445## Returns
from line 52
4152 
4253 An individual user granted a role on a project.
4354 
55 - `type: "user"`
56 
57 Discriminator marking this as an individual user collaborator
58 
59 default: user
60 
4461 - `granted_at: string`
4562 
4663 When this collaborator was granted access (RFC 3339 format)
from line 76
5976 
6077 - `"viewer"`
6178 
62 - `type: "user"`
63 
64 Discriminator marking this as an individual user collaborator
65 
66 default: user
67 
6879 - `user_id: string or null`
6980 
7081 Identifier of the user granted access (tagged ID), or null if their account has since been deleted
from line 84
7384 
7485 An RBAC group granted a role on a project.
7586 
87 - `type: "group"`
88 
89 Discriminator marking this as a group collaborator
90 
91 default: group
92 
7693 - `granted_at: string`
7794 
7895 When this collaborator was granted access (RFC 3339 format)
from line 112
95112 
96113 - `"viewer"`
97114 
98 - `type: "group"`
115 - `ComplianceProjectOrganizationCollaborator object`
99116 
100 Discriminator marking this as a group collaborator
117 An entire organization granted a role on a project.
101118 
102 default: group
119 - `type: "organization"`
103120 
104 - `ComplianceProjectOrganizationCollaborator object`
121 Discriminator marking this as an organization-wide grant
105122 
106 An entire organization granted a role on a project.
123 default: organization
107124 
108125 - `granted_at: string`
109126 
from line 144
127144 
128145 - `"viewer"`
129146 
130 - `type: "organization"`
147 - `ComplianceProjectOrganizationRoleCollaborator object`
131148 
132 Discriminator marking this as an organization-wide grant
149 All holders of an organization-level role granted a role on a project.
133150 
134 default: organization
151 - `type: "organization_role"`
135152 
136 - `ComplianceProjectOrganizationRoleCollaborator object`
153 Discriminator marking this as a grant to all organization members holding a specific org-level role
137154 
138 All holders of an organization-level role granted a role on a project.
155 default: organization_role
139156 
140157 - `granted_at: string`
141158 
from line 175
158175 - `"owner"`
159176 
160177 - `"viewer"`
161 
162 - `type: "organization_role"`
163 
164 Discriminator marking this as a grant to all organization members holding a specific org-level role
165 
166 default: organization_role
167178 
168179- `has_more: boolean`
169180 
Feedback