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)