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

# List Organization Members

`GET /v2/organizations/{organizationId}/members`

This endpoint returns the list of Members that belongs 
to the given Organization, identified by the `organizationId` parameter.

The results may vary based on the access level of the user who calls the endpoint: 
- When it's called with Organization Admin privileges, the result will contain each member in the Organization.
- When it's called without Organization Admin privileges, the result will contain each Organization Admin along with members 
  of those products where the caller has `Team members and permission groups` (`canManageMembers`) permission.

## Path parameters

- `organizationId` string, uuid, required

## Response `200`

- OrganizationMembersModel
  - `admins` OrganizationAdminModel[], required — List of Organization Admins.
    - `userId` string, required — Identifier of the Organization Admin.
    - `fullName` string, required — Name of the Organization Admin.
    - `email` string, required — Email of the OrganizationAdmin.
    - `twoFactorEnabled` boolean, required — Determines whether 2FA is enabled for the Organization Admin.
  - `billingManagers` OrganizationAdminModel[], required — List of Billing Managers.
    - `userId` string, required — Identifier of the Organization Admin.
    - `fullName` string, required — Name of the Organization Admin.
    - `email` string, required — Email of the OrganizationAdmin.
    - `twoFactorEnabled` boolean, required — Determines whether 2FA is enabled for the Organization Admin.
  - `members` OrganizationMemberModel[], required — List of Organization Members.
    - `userId` string, required — Identifier of the Organization Admin.
    - `fullName` string, required — Name of the Organization Admin.
    - `email` string, required — Email of the OrganizationAdmin.
    - `twoFactorEnabled` boolean, required — Determines whether 2FA is enabled for the Organization Admin.
    - `permissions` OrganizationPermissionModel[], required — The permissions of the Member.
      - `product` OrganizationProductModel, required — Describes the Member's Product.
        - `productId` string, uuid, required — Identifier of the Member's Product.
        - `name` string, required — Name of the Member's Product.
      - `permissionGroup` OrganizationPermissionGroupModel, required — Describes the Member's Permission Group within a Product.
        - `permissionGroupId` integer, required — Identifier of the Member's Permission Group.
        - `name` string, required — Name of the Member's Permission Group.

## Other responses

- `400` — Bad request.
- `404` — Not found.
- `429` — Too many requests. In case of the request rate exceeds the rate limits.

---

[API](https://skmtc.net/configcat/apis/configcat-public-management-api.md) · [All operations](https://skmtc.net/configcat/apis/configcat-public-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/configcat/configcat-public-management-api/revisions/88fd971944d7/schema)
