---
metadata:
  - name: generator
    content: Diplodoc Platform v5.39.1
alternate:
  - https://yandex.com.tr/dev/jsapi-v2-1/doc/en/v2-1/ref/reference/findOrganization.md
  - https://yandex.com.tr/dev/jsapi-v2-1/doc/ru/v2-1/ref/reference/findOrganization.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.com.tr/dev/jsapi-v2-1/doc/en/llms.txt

# findOrganization

Static function.

Find organization by given ID. Result is provided in @[GeoObject](https://yandex.com.tr/dev/jsapi-v2-1/doc/en/v2-1/ref/reference/GeoObject.md) object.

**Returns** Promise object.

```javascript
{ vow.Promise } findOrganization(organizationId)
```

**Parameters:**

#|
|| **Parameter** | **Default value** | **Description**  ||
|| [`organizationId`](#param-organizationId)[*](*star) | — | Type: String

ID of the organization. ||
|#

\* Mandatory parameter/option.

**Example:**

```javascript
// Performs a search for an organization with the ID "1124715036".
// The result is added to the map and its balloon is opened.
ymaps.findOrganization('1124715036').then(
    function (orgGeoObject) {
        map.geoObjects.add(orgGeoObject);
        orgGeoObject.balloon.open();
    },
    function (err) {
        // error handling
    }
);
```

[*star]: Mandatory parameter/option.