---
title: "List members"
method: GET
path: "/organizations/{organization_id}/members"
tags: ["Organization Members"]
---

# List members

`GET /organizations/{organization_id}/members`

Lists the members of an organization, newest first. Results are paginated: `page` defaults to 1 and `limit` defaults to 10. `limit` is capped by the server's configured maximum page size, which defaults to 100; a larger value is silently reduced to the cap rather than rejected, and values below the minimum fall back to the defaults. The `pagination` object in the response always reports the values actually applied.

## Path parameters

- `organization_id` string, required

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

OK

- ListOrganizationMembersResponse
  - `data` OrganizationMemberResponse[], required
    - `created_at` string, date-time, required
    - `id` string, required
    - `organization_id` string, required
    - `role` string, required
    - `updated_at` string, date-time, required
    - `user` User, required
      - `created_at` string, date-time, required
      - `email` string, required
      - `email_verified` boolean, required
      - `id` string, required
      - `image` string, nullable
      - `metadata` object, nullable
      - `name` string, required
      - `updated_at` string, date-time, required
  - `pagination` Pagination, required
    - `has_more` boolean, required
    - `limit` integer, required
    - `page` integer, required
    - `total` integer, required
    - `total_pages` integer, required

## Changes

- **2026-08-27** `1a139f96a670` — 2 breaking
  - for the `query` request parameter `limit`, default value `10` was added
  - for the `query` request parameter `page`, default value `1` was added
- **2026-08-24** `def468b0d6ea` — 1 breaking, 2 info
  - the response's body type/format changed from `null, array`/`` to `object`/`` for status `200`
  - added the required property `data` to the response with the `200` status
  - added the required property `pagination` to the response with the `200` status
- **2026-07-25** `4ea48c264d7c` — 1 breaking, 1 info
  - removed the required property `items/user_id` from the response with the `200` status
  - added the required property `items/user` to the response with the `200` status
- **2026-07-24** `3f0abf6aab3c` — 2 info
  - api tag `Organization Members` added
  - api tag `Members` removed
- **2026-07-09** `dad8e2644615` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/authula/apis/authula-api/changes/organizations/:organization_id/members/get.md)

---

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