---
title: "List users"
method: GET
path: "/organization/users"
tags: ["Users"]
---

# List users

`GET /organization/users`

Lists all of the users in the organization.

## Query parameters

- `limit` integer
- `after` string
- `emails` string[]

## Response `200`

Users listed successfully.

- UserListResponse
  - `object` 'list', required
  - `data` User[], required
    - `object` 'organization.user', required — The object type, which is always `organization.user`
    - `id` string, required — The identifier, which can be referenced in API endpoints
    - `name` string, nullable — The name of the user
    - `email` string, nullable — The email address of the user
    - `role` string, nullable — `owner` or `reader`
    - `added_at` integer, required — The Unix timestamp (in seconds) of when the user was added.
    - `is_default` boolean — Whether this is the organization's default user.
    - `created` integer — The Unix timestamp (in seconds) of when the user was created.
    - `user` object — Nested user details.
      - `object` 'user', required
      - `id` string, required
      - `email` string, nullable
      - `name` string, nullable
      - `picture` string, nullable
      - `enabled` boolean, nullable
      - `banned` boolean, nullable
      - `banned_at` integer, nullable
    - `is_service_account` boolean — Whether the user is a service account.
    - `is_scale_tier_authorized_purchaser` boolean, nullable — Whether the user is an authorized purchaser for Scale Tier.
    - `is_scim_managed` boolean — Whether the user is managed through SCIM.
    - `api_key_last_used_at` integer, nullable — The Unix timestamp (in seconds) of the user's last API key usage.
    - `technical_level` string, nullable — The technical level metadata for the user.
    - `developer_persona` string, nullable — The developer persona metadata for the user.
    - `projects` object, nullable — Projects associated with the user, if included.
      - `object` 'list', required
      - `data` object[], required
        - `id` string, nullable
        - `name` string, nullable
        - `role` string, nullable
  - `first_id` string, nullable
  - `last_id` string, nullable
  - `has_more` boolean, required

## Other responses

- `400` — The user listing parameters are invalid.
- `403` — The caller does not have permission to perform this operation.
- `429` — Too many management requests. Reduce the request rate and try again later.

## Changes

- **2026-09-25** `d86203de41ae` — 3 info
  - added the non-success response with the status `400`
  - added the non-success response with the status `403`
  - added the non-success response with the status `429`
- **2026-05-13** `74cbcf73838f` — 10 breaking, 13 info
  - the response property `data/items/email` became optional for the status `200`
  - the response property `data/items/name` became optional for the status `200`
  - the response property `data/items/role` became optional for the status `200`
  - the response property `first_id` became optional for the status `200`
  - …19 more
- **2025-01-31** `fc164a27fdb9` — 1 info
  - added the new optional `query` request parameter `emails`
- **2024-08-06** `8eca3b09b705` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/openai/apis/openapi/changes/organization/users/get.md)

---

[API](https://skmtc.dev/openai/apis/openapi.md) · [All operations](https://skmtc.dev/openai/apis/openapi/llms.txt) · [OpenAPI document](https://skmtc.dev/openai/apis/openapi/revisions/222f167a2327?raw)
