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

Invites changed

api/admin/invites

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 120 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 120, old and new numbered
/
lines
from line 120
120120curl https://api.anthropic.com/v1/organizations/invites \
121121 -H 'Content-Type: application/json' \
122122 -H 'anthropic-version: 2023-06-01' \
123 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
123 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
124124 -d '{
125125 "email": "[email protected]",
126126 "role": "user"
from line 238
238238```bash
239239curl https://api.anthropic.com/v1/organizations/invites/$INVITE_ID \
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 398
398398```bash
399399curl https://api.anthropic.com/v1/organizations/invites \
400400 -H 'anthropic-version: 2023-06-01' \
401 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
401 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
402402```
403403 
404404#### Response (200)
from line 458
458458curl https://api.anthropic.com/v1/organizations/invites/$INVITE_ID \
459459 -X DELETE \
460460 -H 'anthropic-version: 2023-06-01' \
461 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
461 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
462462```
463463 
464464#### Response (200)