[Yandex Cloud documentation](../../../index.md) > [Yandex Identity Hub](../../index.md) > [Step-by-step guides](../index.md) > Managing user pools > Getting a list of users in a pool

# Getting a list of users in a pool


{% list tabs group=instructions %}

- Cloud Center UI {#cloud-center}

  1. Log in to [Yandex Identity Hub](https://center.yandex.cloud/organization) using an administrator or organization owner account.
  1. In the left-hand panel, click ![userpool](../../../_assets/organization/userpool.svg) **User pools** and select the [user pool](../../concepts/user-pools.md).
  1. Go to the **Members** tab. You will se the list of all pool users.

- CLI {#cli}

  If you do not have the Yandex Cloud CLI yet, [install and initialize it](../../../cli/quickstart.md#install).

  The folder used by default is the one specified when [creating](../../../cli/operations/profile/profile-create.md) the CLI profile. To change the default folder, use the `yc config set folder-id <folder_ID>` command. You can also specify a different folder for any command using `--folder-name` or `--folder-id`. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

  1. See the description of the CLI command for getting a list of users in the [pool](../../concepts/user-pools.md):

     ```bash
     yc organization-manager idp user list --help
     ```

  1. Run this command:

      ```bash
      yc organization-manager idp user list --userpool-id <pool_ID>
      ```

      Where `--userpool-id` is the ID of the pool whose list of users you want to get.

- API {#api}

  Use the [User.List](../../idp/api-ref/User/list.md) REST API method for the [User](../../idp/api-ref/User/index.md) resource or the [UserService/List](../../idp/api-ref/grpc/User/list.md) gRPC API call.

{% endlist %}