Delete Service Account Workspace Member
ServiceAccountRemoveResponse beta().organization().workspaces().serviceAccounts().remove(ServiceAccountRemoveParamsparams, RequestOptionsrequestOptions = RequestOptions.none())DELETE/v1/organizations/workspaces/{workspace_id}/service_accounts/{service_account_id}
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.
Remove a service account from a workspace.
Removal is idempotent (returns 200 even if the membership was already
removed). A DELETE against the implicit default-workspace membership
returns 200 but is a no-op and the membership persists; deleting an
explicit default-workspace row reverts to the implicit workspace_user
membership. Archived workspaces return 400.
Parameters
Returns
Delete Service Account Workspace Member
package com.anthropic.example;
import com.anthropic.client.AnthropicClient;
import com.anthropic.client.okhttp.AnthropicOkHttpClient;
import com.anthropic.models.beta.organization.workspaces.serviceaccounts.ServiceAccountRemoveParams;
import com.anthropic.models.beta.organization.workspaces.serviceaccounts.ServiceAccountRemoveResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
AnthropicClient client = AnthropicOkHttpClient.fromEnv();
ServiceAccountRemoveParams params = ServiceAccountRemoveParams.builder()
.workspaceId("workspace_id")
.serviceAccountId("service_account_id")
.build();
ServiceAccountRemoveResponse serviceAccount = client.beta().organization().workspaces().serviceAccounts().remove(params);
}
}{
"service_account_id": "service_account_id",
"type": "service_account_workspace_member_deleted",
"workspace_id": "workspace_id"
}Returns Examples
{
"service_account_id": "service_account_id",
"type": "service_account_workspace_member_deleted",
"workspace_id": "workspace_id"
}