Search + K

Command Palette

Search for a command to run...

Sign In

Deletes a user from the organization.

DELETE /organization/users/{user_id}
Copy endpoint
https://api.openai.com/v1

Parameters

path Path Parameters

Name Type
user_id required

The ID of the user.

string

Responses

200 application/json

User deleted successfully.

interface UserDeleteResponse {
object: "organization.user.deleted";
id: string;
deleted: boolean;
}