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

Users changed

api/admin/users

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+4added
Lines−4removed
From line 69 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 69, old and new numbered
/
lines
from line 69
6969```bash
7070curl https://api.anthropic.com/v1/organizations/users/$USER_ID \
7171 -H 'anthropic-version: 2023-06-01' \
72 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
72 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7373```
7474 
7575#### Response (200)
from line 190
190190```bash
191191curl https://api.anthropic.com/v1/organizations/users \
192192 -H 'anthropic-version: 2023-06-01' \
193 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
193 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
194194```
195195 
196196#### Response (200)
from line 301
301301curl https://api.anthropic.com/v1/organizations/users/$USER_ID \
302302 -H 'Content-Type: application/json' \
303303 -H 'anthropic-version: 2023-06-01' \
304 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
304 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
305305 -d '{
306306 "role": "user"
307307 }'
from line 352
352352curl https://api.anthropic.com/v1/organizations/users/$USER_ID \
353353 -X DELETE \
354354 -H 'anthropic-version: 2023-06-01' \
355 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
355 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
356356```
357357 
358358#### Response (200)