---
title: "List group users"
method: GET
path: "/organization/groups/{group_id}/users"
tags: ["Group users"]
---

# List group users

`GET /organization/groups/{group_id}/users`

Lists the users assigned to a group.

## Path parameters

- `group_id` string, required

## Query parameters

- `limit` integer
- `after` string
- `order` 'asc' | 'desc'

## Response `200`

Group users listed successfully.

- UserListResource — Paginated list of user objects returned when inspecting group membership.
  - `object` 'list', required — Always `list`.
  - `data` GroupUser[], required — Users in the current page.
    - `id` string, required — The identifier, which can be referenced in API endpoints
    - `name` string, required — The name of the user.
    - `email` string, nullable, required — The email address of the user.
  - `has_more` boolean, required — Whether more users are available when paginating.
  - `next` string, nullable, required — Cursor to fetch the next page of results, or `null` when no further users are available.

## Changes

- **2026-05-01** `72f65c459c35` — 4 breaking
  - response property `data/items/email` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - removed the required property `data/items/added_at` from the response with the `200` status
  - removed the required property `data/items/object` from the response with the `200` status
  - removed the required property `data/items/role` from the response with the `200` status
- **2026-04-28** `fa32d6e7d961` — 1 info
  - the endpoint scheme security `AdminApiKeyAuth` was added to the API

[Change history](https://skmtc.dev/openai/apis/openai-api/changes/organization/groups/:group_id/users/get.md)

---

[API](https://skmtc.dev/openai/apis/openai-api.md) · [All operations](https://skmtc.dev/openai/apis/openai-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openai/openai-api/revisions/dcd35773a322/schema)
