[Yandex Cloud documentation](../../index.md) > [Yandex Identity Hub](../index.md) > [Step-by-step guides](index.md) > Managing organizations > Getting organization ID

# Getting organization ID

In Yandex Cloud, each organization gets a unique ID. With this ID, you can perform all kinds of operations with the organization itself and the resources created inside it.

To find out the organization ID:

{% list tabs group=instructions %}

- Cloud Center UI {#cloud-center}

  1. Log in to [Cloud Center](https://center.yandex.cloud).

     On the Cloud Center home page that opens, there is general info about your organization. 

  1. You can find the organization ID below the organization's name in the center of the screen. Click ![copy](../../_assets/console-icons/copy.svg) to the right of the ID to copy it.

     If you have more than one organization, you can [switch](manage-organizations.md#switch-to-another-org) to the one you need. To do this, click ![chevron-down](../../_assets/console-icons/chevron-down.svg) next to the name of the current organization in the top-left corner of the screen and select another one.

- 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 organizations:

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

  1. Get a list of available organizations:
     
     ```bash
     yc organization-manager organization list
     ```
     
     Result:
     
     ```text
     +----------------------+-----------------------------+-------------------------+--------+
     |          ID          |            NAME             |          TITLE          | LABELS |
     +----------------------+-----------------------------+-------------------------+--------+
     | bpf1smsil5q0******** | org1-technical-name         | Organization One        |        |
     | bpf2c65rqcl8******** | org2-technical-name         | Organization Two        |        |
     | bpfaidqca8vd******** | org3-technical-name         | Organization Three      |        |
     +----------------------+-----------------------------+-------------------------+--------+
     ```
     
     Copy the ID of the organization you need from the `ID` column.

- API {#api}

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

{% endlist %}