Search + K

Command Palette

Search for a command to run...

Sign In

Retrieves a user by their identifier.

GET /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 retrieved successfully.

interface User {
object: "organization.user";
id: string;
name: string;
email: string;
role: "owner" | "reader";
added_at: number;
}