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

# List organization members

`GET /organizations/{organization_id}/members`

Accessible to organization owners and members with the "manage members" permission.

## Path parameters

- `organization_id` string, required

## Query parameters

- `filter[permissions]` ArrayFilter
  - `eq` string — Equal
  - `ne` string — Not equal
  - `in` string — In (comma-separated list)
  - `nin` string — Not in (comma-separated list)
- `page[size]` integer
- `page[before]` string
- `page[after]` string
- `sort` string

## Response `200`

OK

- object
  - `count` integer — Total number of items across pages.
  - `items` OrganizationMember[]
    - `id` string, uuid — The ID of the user.
    - `organization_id` string, ulid — The ID of the organization.
    - `user_id` string, uuid — The ID of the user.
    - `permissions` string[] — The organization member permissions.
    - `level` 'admin' | 'viewer' — Access level of the member.
    - `owner` boolean — Whether the member is the organization owner.
    - `created_at` string, date-time — The date and time when the member was created.
    - `updated_at` string, date-time — The date and time when the member was last updated.
    - `_links` object
      - `self` object — Link to the current member.
        - `href` string — URL of the link.
      - `update` object — Link for updating the current member.
        - `href` string — URL of the link.
        - `method` string — The HTTP method to use.
      - `delete` object — Link for deleting the current member.
        - `href` string — URL of the link.
        - `method` string — The HTTP method to use.
  - `_links` ListLinks
    - `self` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `previous` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link
    - `next` Link — A hypermedia link to the {current, next, previous} set of items.
      - `href` string — URL of the link

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/upsun/apis/upsun-com-rest-api.md) · [All operations](https://skmtc.net/upsun/apis/upsun-com-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/upsun/upsun-com-rest-api/revisions/6cc88fde6435/schema)
