The whole hunk
from line 67, old and new numbered
/
lines
from line 67
6767```bash
6868curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID \
6969 -H 'anthropic-version: 2023-06-01' \
70 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
70 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7171```
7272
7373#### Response (200)
from line 180
180180```bash
181181curl https://api.anthropic.com/v1/organizations/tunnels \
182182 -H 'anthropic-version: 2023-06-01' \
183 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
183 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
184184```
185185
186186#### Response (200)
from line 252
252252curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/reveal_token \
253253 -X POST \
254254 -H 'anthropic-version: 2023-06-01' \
255 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
255 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
256256```
257257
258258#### Response (200)
from line 322
322322curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/rotate_token \
323323 -X POST \
324324 -H 'anthropic-version: 2023-06-01' \
325 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
325 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
326326```
327327
328328#### Response (200)
from line 408
408408curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/archive \
409409 -X POST \
410410 -H 'anthropic-version: 2023-06-01' \
411 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
411 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
412412```
413413
414414#### Response (200)
from line 675
675675curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
676676 -H 'Content-Type: application/json' \
677677 -H 'anthropic-version: 2023-06-01' \
678 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
678 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
679679 -d '{
680680 "ca_certificate_pem": "-----BEGIN CERTIFICATE-----\nMIIBexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexa\n...illustrative placeholder, not a real certificate...\n-----END CERTIFICATE-----\n"
681681 }'
from line 766
766766```bash
767767curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_ID \
768768 -H 'anthropic-version: 2023-06-01' \
769 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
769 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
770770```
771771
772772##### Response (200)
from line 878
878878```bash
879879curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
880880 -H 'anthropic-version: 2023-06-01' \
881 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
881 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
882882```
883883
884884##### Response (200)
from line 976
976976curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_ID/archive \
977977 -X POST \
978978 -H 'anthropic-version: 2023-06-01' \
979 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
979 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
980980```
981981
982982##### Response (200)