The whole hunk
from line 82, old and new numbered
/
lines
from line 82
8282curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
8383 -H 'Content-Type: application/json' \
8484 -H 'anthropic-version: 2023-06-01' \
85 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
85 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
8686 -d '{
8787 "ca_certificate_pem": "-----BEGIN CERTIFICATE-----\nMIIBexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexa\n...illustrative placeholder, not a real certificate...\n-----END CERTIFICATE-----\n"
8888 }'
from line 173
173173```bash
174174curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_ID \
175175 -H 'anthropic-version: 2023-06-01' \
176 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
176 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
177177```
178178
179179#### Response (200)
from line 285
285285```bash
286286curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
287287 -H 'anthropic-version: 2023-06-01' \
288 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
288 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
289289```
290290
291291#### Response (200)
from line 383
383383curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_ID/archive \
384384 -X POST \
385385 -H 'anthropic-version: 2023-06-01' \
386 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
386 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
387387```
388388
389389#### Response (200)