[Документация Yandex Cloud](../../../../index.md) > [Yandex Identity Hub](../../../index.md) > Справочник API > [gRPC (англ.)](../index.md) > [Organization](index.md) > Get

# Identity Hub API, gRPC: OrganizationService.Get

Returns the specified Organization resource.
To get the list of available Organization resources, make a [List](list.md#List) request.

## gRPC request

**rpc Get ([GetOrganizationRequest](#yandex.cloud.organizationmanager.v1.GetOrganizationRequest)) returns ([Organization](#yandex.cloud.organizationmanager.v1.Organization))**

## GetOrganizationRequest {#yandex.cloud.organizationmanager.v1.GetOrganizationRequest}

```json
{
  "organization_id": "string"
}
```

#|
||Field | Description ||
|| organization_id | **string**

Required field. ID of the Organization resource to return.
To get the organization ID, use a [OrganizationService.List](list.md#List) request.

The maximum string length in characters is 50. ||
|#

## Organization {#yandex.cloud.organizationmanager.v1.Organization}

```json
{
  "id": "string",
  "created_at": "google.protobuf.Timestamp",
  "name": "string",
  "description": "string",
  "title": "string",
  "labels": "map<string, string>"
}
```

An Organization resource. For more information, see [Organization](../../../enable-org).

#|
||Field | Description ||
|| id | **string**

ID of the organization. ||
|| created_at | **[google.protobuf.Timestamp](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#timestamp)**

Creation timestamp. ||
|| name | **string**

Name of the organization. 3-63 characters long. ||
|| description | **string**

Description of the organization. 0-256 characters long. ||
|| title | **string**

Display name of the organization. 0-256 characters long. ||
|| labels | **object** (map<**string**, **string**>)

Resource labels as `` key:value `` pairs. Maximum of 64 per resource. ||
|#