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

Members changed

api/admin/workspaces/members

Nearest release: v2.1.261, published 3 hours before 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+5added
Lines−5removed
From line 70 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 70, old and new numbered
/
lines
from line 70
7070curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members \
7171 -H 'Content-Type: application/json' \
7272 -H 'anthropic-version: 2023-06-01' \
73 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
73 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
7474 -d '{
7575 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q",
7676 "workspace_role": "workspace_admin"
from line 143
143143```bash
144144curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members/$USER_ID \
145145 -H 'anthropic-version: 2023-06-01' \
146 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
146 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
147147```
148148 
149149#### Response (200)
from line 238
238238```bash
239239curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members \
240240 -H 'anthropic-version: 2023-06-01' \
241 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
241 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
242242```
243243 
244244#### Response (200)
from line 331
331331curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members/$USER_ID \
332332 -H 'Content-Type: application/json' \
333333 -H 'anthropic-version: 2023-06-01' \
334 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
334 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
335335 -d '{
336336 "workspace_role": "workspace_admin"
337337 }'
from line 388
388388curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members/$USER_ID \
389389 -X DELETE \
390390 -H 'anthropic-version: 2023-06-01' \
391 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
391 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
392392```
393393 
394394#### Response (200)