Claude Platform Docs

サービスアカウントのワークスペースメンバーを削除

DELETE/v1/organizations/workspaces/{workspace_id}/service_accounts/{service_account_id}

サービスアカウントをワークスペースから削除します。

削除はべき等です(メンバーシップがすでに削除されている場合でも200を返します)。暗黙的なデフォルトワークスペースのメンバーシップに対するDELETEは200を返しますが、何も行われずメンバーシップは維持されます。明示的なデフォルトワークスペースの行を削除すると、暗黙的な workspace_user メンバーシップに戻ります。アーカイブ済みのワークスペースは400を返します。OAuthベアラーまたはConsoleセッションが必要です。Admin APIキーは受け付けられません。

Path parameters
workspace_id: string

ID of the workspace.

service_account_id: string

ID of the service account.

Headers
"anthropic-beta": optional array of string

Optional header to specify the beta version(s) you want to use.

To use multiple betas, use a comma separated list like beta1,beta2 or specify the header multiple times for each beta.

Returns
service_account_id: string

Tagged service account ID (svac_...) named in the delete request. Removal is idempotent; see the endpoint description for the implicit-membership no-op.

type: "service_account_workspace_member_deleted"
defaultservice_account_workspace_member_deleted
workspace_id: string

Tagged workspace ID (wrkspc_...) named in the delete request.

サービスアカウントのワークスペースメンバーを削除
cURL
curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/service_accounts/$SERVICE_ACCOUNT_ID \
    -X DELETE \
    -H 'anthropic-version: 2023-06-01' \
    -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
Returns Examples
Response 200
{
  "service_account_id": "service_account_id",
  "type": "service_account_workspace_member_deleted",
  "workspace_id": "workspace_id"
}