Lists all of the users in the organization.
GET
/organization/users https://api.openai.com/v1
Parameters
query Query Parameters
| Name | Type |
|---|---|
limit A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20. | number |
after A cursor for use in pagination. | string |
emails Filter by the email address of users. | string[] |
Responses
200 application/json
Users listed successfully.
interface UserListResponse {
object: "list";
data:User [];
first_id: string;
last_id: string;
has_more: boolean;
}
object: "list";
data:
first_id: string;
last_id: string;
has_more: boolean;
}