What this read moved
76–100 of 122This capture is too large to show at once. Changes 76-100 of 122 are below, significant first; the rest are on the following screens.
api/admin/mcp_tunnels/archive Changed · +1 / -1 lines
from line 71
7171curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/archive \
7272 -X POST \
7373 -H 'anthropic-version: 2023-06-01' \
74 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
74 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7575```
7676
7777### Response (200)
api/admin/mcp_tunnels/list Changed · +1 / -1 lines
from line 94
9494```bash
9595curl https://api.anthropic.com/v1/organizations/tunnels \
9696 -H 'anthropic-version: 2023-06-01' \
97 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
97 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
9898```
9999
100100### Response (200)
api/admin/mcp_tunnels/retrieve Changed · +1 / -1 lines
from line 65
6565```bash
6666curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID \
6767 -H 'anthropic-version: 2023-06-01' \
68 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
68 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
6969```
7070
7171### Response (200)
api/admin/mcp_tunnels/reveal_token Changed · +1 / -1 lines
from line 48
4848curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/reveal_token \
4949 -X POST \
5050 -H 'anthropic-version: 2023-06-01' \
51 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
51 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
5252```
5353
5454### Response (200)
api/admin/mcp_tunnels/rotate_token Changed · +1 / -1 lines
from line 55
5555curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/rotate_token \
5656 -X POST \
5757 -H 'anthropic-version: 2023-06-01' \
58 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
58 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
5959```
6060
6161### Response (200)
api/admin/mcp_tunnels/tunnel_certificates/archive Changed · +1 / -1 lines
from line 74
7474curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_ID/archive \
7575 -X POST \
7676 -H 'anthropic-version: 2023-06-01' \
77 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
77 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7878```
7979
8080### Response (200)
api/admin/mcp_tunnels/tunnel_certificates/create Changed · +1 / -1 lines
from line 80
8080curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
8181 -H 'Content-Type: application/json' \
8282 -H 'anthropic-version: 2023-06-01' \
83 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
83 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
8484 -d '{
8585 "ca_certificate_pem": "-----BEGIN CERTIFICATE-----\nMIIBexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexa\n...illustrative placeholder, not a real certificate...\n-----END CERTIFICATE-----\n"
8686 }'
api/admin/mcp_tunnels/tunnel_certificates/list Changed · +1 / -1 lines
from line 93
9393```bash
9494curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
9595 -H 'anthropic-version: 2023-06-01' \
96 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
96 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
9797```
9898
9999### Response (200)
api/admin/mcp_tunnels/tunnel_certificates/retrieve Changed · +1 / -1 lines
from line 69
6969```bash
7070curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_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)
api/admin/organizations Changed · +1 / -1 lines
from line 33
3333```bash
3434curl https://api.anthropic.com/v1/organizations/me \
3535 -H 'anthropic-version: 2023-06-01' \
36 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
36 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
3737```
3838
3939#### Response (200)
api/admin/organizations/me Changed · +1 / -1 lines
from line 31
3131```bash
3232curl https://api.anthropic.com/v1/organizations/me \
3333 -H 'anthropic-version: 2023-06-01' \
34 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
34 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
3535```
3636
3737### Response (200)
api/admin/rbac_groups/create Changed · +1 / -1 lines
from line 64
6464curl https://api.anthropic.com/v1/organizations/rbac_groups \
6565 -H 'Content-Type: application/json' \
6666 -H 'anthropic-version: 2023-06-01' \
67 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
67 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
6868 -d '{
6969 "name": "Engineering"
7070 }'
api/admin/rbac_groups/delete Changed · +2 / -2 lines
from line 2
22
33**DELETE** `/v1/organizations/rbac_groups/{group_id}`
44
5Delete an RBAC Group. Groups provisioned by an identity provider (source type `"scim"`) cannot be deleted via the API.
5Delete an RBAC Group. Groups provisioned by an identity provider (source type `"scim"`) cannot be deleted via the API while an organization in the tenant uses SCIM provisioning.
66
77The RBAC Groups API is available to Claude Enterprise organizations only.
88
from line 34
3434curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID \
3535 -X DELETE \
3636 -H 'anthropic-version: 2023-06-01' \
37 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
37 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
3838```
3939
4040### Response (200)
api/admin/rbac_groups/list Changed · +1 / -1 lines
from line 77
7777```bash
7878curl https://api.anthropic.com/v1/organizations/rbac_groups \
7979 -H 'anthropic-version: 2023-06-01' \
80 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
80 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
8181```
8282
8383### Response (200)
api/admin/rbac_groups/members/create Changed · +2 / -2 lines
from line 2
22
33**POST** `/v1/organizations/rbac_groups/{group_id}/members`
44
5Add a User to an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API.
5Add a User to an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API while an organization in the tenant uses SCIM provisioning.
66
77The RBAC Groups API is available to Claude Enterprise organizations only.
88
from line 54
5454curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
5555 -H 'Content-Type: application/json' \
5656 -H 'anthropic-version: 2023-06-01' \
57 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
57 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
5858 -d '{
5959 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
6060 }'
api/admin/rbac_groups/members/delete Changed · +2 / -2 lines
from line 2
22
33**DELETE** `/v1/organizations/rbac_groups/{group_id}/members/{user_id}`
44
5Remove a User from an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API.
5Remove a User from an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API while an organization in the tenant uses SCIM provisioning.
66
77The RBAC Groups API is available to Claude Enterprise organizations only.
88
from line 40
4040curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members/$USER_ID \
4141 -X DELETE \
4242 -H 'anthropic-version: 2023-06-01' \
43 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
43 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
4444```
4545
4646### Response (200)
api/admin/rbac_groups/members/list Changed · +1 / -1 lines
from line 69
6969```bash
7070curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
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)
api/admin/rbac_groups/retrieve Changed · +1 / -1 lines
from line 61
6161```bash
6262curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID \
6363 -H 'anthropic-version: 2023-06-01' \
64 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
64 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
6565```
6666
6767### Response (200)
api/admin/rbac_groups/update Changed · +2 / -2 lines
from line 2
22
33**POST** `/v1/organizations/rbac_groups/{group_id}`
44
5Update an RBAC Group's name. Groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API.
5Update an RBAC Group's name. Groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API while an organization in the tenant uses SCIM provisioning.
66
77The RBAC Groups API is available to Claude Enterprise organizations only.
88
from line 70
7070curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID \
7171 -H 'Content-Type: application/json' \
7272 -H 'anthropic-version: 2023-06-01' \
73 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
73 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
7474 -d '{
7575 "name": "Engineering"
7676 }'
api/admin/rbac_roles/list Changed · +1 / -1 lines
from line 66
6666```bash
6767curl https://api.anthropic.com/v1/organizations/rbac_roles \
6868 -H 'anthropic-version: 2023-06-01' \
69 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
69 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7070```
7171
7272### Response (200)
api/admin/rbac_roles/permissions Changed · +1 / -1 lines
from line 155
155155```bash
156156curl https://api.anthropic.com/v1/organizations/rbac_roles/$ROLE_ID/permissions \
157157 -H 'anthropic-version: 2023-06-01' \
158 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
158 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
159159```
160160
161161#### Response (200)
api/admin/rbac_roles/permissions/list Changed · +1 / -1 lines
from line 153
153153```bash
154154curl https://api.anthropic.com/v1/organizations/rbac_roles/$ROLE_ID/permissions \
155155 -H 'anthropic-version: 2023-06-01' \
156 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
156 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
157157```
158158
159159### Response (200)
api/admin/rbac_roles/retrieve Changed · +1 / -1 lines
from line 49
4949```bash
5050curl https://api.anthropic.com/v1/organizations/rbac_roles/$ROLE_ID \
5151 -H 'anthropic-version: 2023-06-01' \
52 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
52 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
5353```
5454
5555### Response (200)
api/admin/service_accounts/list Changed · +3 / -1 lines
from line 2
22
33**GET** `/v1/organizations/service_accounts`
44
5**Requires an OAuth access token with the `org:admin` scope**, from `ant auth login --scope org:admin` or a workload identity federation rule; Admin API keys are not accepted. See [Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
6
57List service accounts in the caller's organization.
68
79Results are ordered by creation time, newest first. Use `limit` and the
from line 103
101103```bash
102104curl https://api.anthropic.com/v1/organizations/service_accounts \
103105 -H 'anthropic-version: 2023-06-01' \
104 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
106 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
105107```
106108
107109### Response (200)
api/admin/service_accounts/retrieve Changed · +3 / -1 lines
from line 2
22
33**GET** `/v1/organizations/service_accounts/{service_account_id}`
44
5**Requires an OAuth access token with the `org:admin` scope**, from `ant auth login --scope org:admin` or a workload identity federation rule; Admin API keys are not accepted. See [Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
6
57Retrieve a service account by its ID (`svac_...`).
68
79## Path parameters
from line 88
8688```bash
8789curl https://api.anthropic.com/v1/organizations/service_accounts/$SERVICE_ACCOUNT_ID \
8890 -H 'anthropic-version: 2023-06-01' \
89 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
91 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
9092```
9193
9294### Response (200)