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

# List organization members

`GET /v1beta/organizations/{organization_id}/members`

List members of an organization. Requires organization membership.

## Path parameters

- `organization_id` string, required — Organization to list members for. Pattern: org_[0-9a-hjkmnp-tv-z]{26}

## Query parameters

- `page_token` string — Opaque pagination token from a previous response.
- `page_size` integer — Maximum number of items to return per page (1-100). Default: 50.

## Response `200`

Success

- ListOrganizationMembersResponse — ListOrganizationMembersResponse contains a page of organization members.
  - `items` OrganizationMember[] — List of organization members.
    - `joined_at` string, date-time, required — When the member joined the organization.
    - `role` 'owner' | 'admin' | 'member', required
    - `user` User, required — User represents a human user account. Returned by GetUser (endpoint deferred).
      - `email` string, email, required
      - `family_name` string, nullable — Family name (last name) of the user.
      - `given_name` string, nullable — Given name (first name) of the user.
      - `id` string, required
      - `name` string, required — Display name of the user.
      - `profile_image_url` string, nullable — URL of the user's profile image.
  - `pagination` Pagination, required — Pagination contains cursor-based pagination metadata. Follows Google AIP-158 for pagination field naming.
    - `has_more` boolean — Whether there are more results in the forward direction.
    - `next_page_token` string — Token to retrieve the next page of results. Empty if there are no more results in the forward direction.
    - `prev_page_token` string — Token to retrieve the previous page of results. Empty if this is the first page.

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed - missing or invalid API key
- `403` — Authorization failed - valid key but insufficient permissions
- `404` — Resource not found
- `429` — Too many requests
- `500` — Internal server error

## Changes

- **2026-03-19** `885f41a57639` — 5 info
  - api tag `Members` added
  - api tag `Organizations` removed
  - added the optional property `items/items/user/family_name` to the response with the `200` status
  - added the optional property `items/items/user/given_name` to the response with the `200` status
  - …1 more
- **2026-03-05** `a7e69986914e` — 2 breaking, 2 info
  - removed the required property `items/items/email` from the response with the `200` status
  - removed the required property `items/items/user/type` from the response with the `200` status
  - the `items/items/user/id` response's property pattern was changed from `^(user|svc)_[0-9a-hjkmnp-tv-z]{26}$` to `^user_[0-9a-hjkmnp-tv-z]{26}$` for the status `200`
  - added the required property `items/items/user/email` to the response with the `200` status

[Change history](https://skmtc.dev/factify-inc/apis/factify-api/changes/v1beta/organizations/:organization_id/members/get.md)

---

[API](https://skmtc.dev/factify-inc/apis/factify-api.md) · [All operations](https://skmtc.dev/factify-inc/apis/factify-api/llms.txt) · [OpenAPI document](https://skmtc.dev/factify-inc/apis/factify-api/revisions/dc0fae5e4012?raw)
