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

# List organization members

`GET /organizations/{organization}/members`

### Authorization
A service token or OAuth token must have at least one of the following access or scopes in order to use this API endpoint:

**Service Token Accesses**
 `read_organization`

**OAuth Scopes**

 | Resource | Scopes |
| :------- | :---------- |
| Organization | `read_organization` |

## Path parameters

- `organization` string, required

## Query parameters

- `q` string
- `page` integer
- `per_page` integer

## Response `200`

Returns members of the organization

- object
  - `type` string, required — The response type. Always "list" for paginated responses.
  - `current_page` integer, required — The current page number
  - `per_page` integer, required — The maximum number of results per page
  - `next_page` integer, nullable, required — The next page number, or null when this is the last page
  - `next_page_url` string, nullable, required — The next page of results, or null when this is the last page
  - `prev_page` integer, nullable, required — The previous page number, or null when this is the first page
  - `prev_page_url` string, nullable, required — The previous page of results, or null when this is the first page
  - `total_count` integer, required — The total number of matching results
  - `total_pages` integer, required — The total number of pages of matching results
  - `data` object[], required
    - `id` string, required — The ID of the membership
    - `user` object, required
      - `id` string, required — The ID of the user
      - `display_name` string, required — The display name of the user
      - `name` string, required — The name of the user
      - `email` string, required — The email of the user
      - `avatar_url` string, required — The URL source of the user's avatar
      - `created_at` string, required — When the user was created
      - `updated_at` string, required — When the user was last updated
      - `two_factor_auth_configured` boolean, required — Whether or not the user has configured two factor authentication
      - `default_organization` object, nullable
        - `id` string, required — The ID for the resource
        - `name` string, required — The name for the resource
        - `created_at` string, required — When the resource was created
        - `updated_at` string, required — When the resource was last updated
        - `deleted_at` string, nullable, required — When the resource was deleted, if deleted
      - `sso` boolean, nullable — Whether or not the user is managed by SSO.
      - `managed` boolean, nullable — Whether or not the user is managed by an authentication provider.
      - `directory_managed` boolean, nullable — Whether or not the user is managed by a SSO directory.
      - `email_verified` boolean, nullable — Whether or not the user is verified by email.
    - `role` 'member' | 'admin', required — The role of the user in the organization
    - `created_at` string, required — When the membership was created
    - `updated_at` string, required — When the membership was last updated

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

## Changes

- **2026-08-11** `4b2e4f05bda2` — 3 info
  - added the required property `per_page` to the response with the `200` status
  - added the required property `total_count` to the response with the `200` status
  - added the required property `total_pages` to the response with the `200` status
- **2026-06-01** `72506953f367` — 15 breaking, 1 info
  - the response property `data/items/user/default_organization` became nullable for the status `200`
  - the response property `data/items/user/default_organization/deleted_at` became nullable for the status `200`
  - the response property `data/items/user/directory_managed` became nullable for the status `200`
  - the response property `data/items/user/email_verified` became nullable for the status `200`
  - …12 more
- **2025-12-09** `d710019068fb` — 2 breaking
  - for the `query` request parameter `page`, the type/format was changed from `number`/`` to `integer`/``
  - for the `query` request parameter `per_page`, the type/format was changed from `number`/`` to `integer`/``
- **2025-11-14** `5f2529ef1c86` — 1 info
  - added the new optional `query` request parameter `q`

[Change history](https://skmtc.dev/planetscale/apis/planetscale-api/changes/organizations/:organization/members/get.md)

---

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