---
metadata:
  - name: generator
    content: Diplodoc Platform v5.48.2
alternate:
  - https://yandex.com.tr/dev/metrika/en/management/openapi/cloud/getExportsByCounter.md
  - https://yandex.com.tr/dev/metrika/ru/management/openapi/cloud/getExportsByCounter.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.com.tr/dev/metrika/ru/llms.txt

<!-- source: ru/management-src/Upravlenie-eksportom-v-Yandex-Cloud/getExportsByCounter.md -->
<div class="openapi">

# Получение информации об объектах, которые экспортируются в Yandex Cloud

<!-- markdownlint-disable-file -->

Возвращает информацию об объектах, которые экспортируются в Yandex Cloud, с учетом указанного счетчика.

## Request

<div class="openapi__requests">

<div class="openapi__request__wrapper" style="--method: var(--dc-openapi-methods-get);margin-bottom: 12px">

<div class="openapi__request">

GET {.openapi__method}
```text translate=no
https://api-metrika.yandex.net/export/v1/cloud/counter/{counterId}
```

</div>

</div>

</div>

### Path parameters

#|
|| **Name** | **Description** ||
||

_counterId_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: integer

Идентификатор счетчика Метрики.
{.table-cell}
||
|#{.json-schema-properties}

## Responses

<div class="openapi__response__code__200">

## 200 OK

OK

<div class="openapi-entity">

### Body

{% cut "application/json" %}

```json translate=no
{
  "cloud_exports": [
    {
      "ce_id": 0,
      "folder_id": "example",
      "transfer_id": "example",
      "status": "example",
      "quota": 0,
      "type": "example",
      "locked": true,
      "tables": [
        {
          "ce_id": 0,
          "table_name": "example",
          "status": "example",
          "columns": [
            null
          ],
          "statistics": {}
        }
      ]
    }
  ]
}
```

{% endcut %}

#|
|| **Name** | **Description** ||
||

_cloud_exports_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [CloudExport](#entity-CloudExport)[]

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "ce_id": 0,
    "folder_id": "example",
    "transfer_id": "example",
    "status": "example",
    "quota": 0,
    "type": "example",
    "locked": true,
    "tables": [
      {
        "ce_id": 0,
        "table_name": "example",
        "status": "example",
        "columns": [
          "example"
        ],
        "statistics": {
          "bytes_per_second_by_hour": 0,
          "bytes_per_second_by_day": 0,
          "bytes_per_second_by_week": 0,
          "bytes_per_second_by_month": 0,
          "bytes_per_second_by_year": 0,
          "update_time": "2025-01-01T00:00:00Z"
        }
      }
    ]
  }
]
```

{% endcut %}
{.table-cell}
||
|#{.json-schema-properties}

</div>

<div class="openapi-entity">

### CloudExportStatistics {#entity-CloudExportStatistics}

Статистика по экспорту.

#|
|| **Name** | **Description** ||
||

_bytes_per_second_by_day_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Среднее количество байт в секунду, период расчета — сутки.
{.table-cell}
||
||

_bytes_per_second_by_hour_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Среднее количество байт в секунду, период расчета — час.
{.table-cell}
||
||

_bytes_per_second_by_month_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Среднее количество байт в секунду, период расчета — месяц.
{.table-cell}
||
||

_bytes_per_second_by_week_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Среднее количество байт в секунду, период расчета — неделя.
{.table-cell}
||
||

_bytes_per_second_by_year_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Среднее количество байт в секунду, период расчета — год.
{.table-cell}
||
||

_update_time_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;date-time&gt;

Дата обновления в формате ISO 8601, например  `2024-03-04T17:10:03Z`.

_Example:_{.json-schema-reset .json-schema-example} `2025-01-01T00:00:00Z`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "bytes_per_second_by_hour": 0,
  "bytes_per_second_by_day": 0,
  "bytes_per_second_by_week": 0,
  "bytes_per_second_by_month": 0,
  "bytes_per_second_by_year": 0,
  "update_time": "2025-01-01T00:00:00Z"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CloudExportTable {#entity-CloudExportTable}

Список объектов `cloud_export_table`.

#|
|| **Name** | **Description** ||
||

_ce_id_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Внутренний идентификатор Метрики. Автоматически генерируется при создании экспорта.
{.table-cell}
||
||

_columns_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string[]

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  "example"
]
```

{% endcut %}
{.table-cell}
||
||

_statistics_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [CloudExportStatistics](#entity-CloudExportStatistics)

Статистика по экспорту.

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "bytes_per_second_by_hour": 0,
  "bytes_per_second_by_day": 0,
  "bytes_per_second_by_week": 0,
  "bytes_per_second_by_month": 0,
  "bytes_per_second_by_year": 0,
  "update_time": "2025-01-01T00:00:00Z"
}
```

{% endcut %}
{.table-cell}
||
||

_status_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Статус экспорта таблицы с данными в Yandex Cloud:
- `NEW` — Таблица новая, не экспортировалась.
- `ACTIVATING` — Экспорт таблицы в процессе.
- `ACTIVE` — Экспорт таблицы включен.
- `DELETING` — Экспорт таблицы отключается.
- `DELETED` — Экспорт таблицы отключен.


_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_table_name_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Название таблицы. Возможные значения:
- `HITS` — Метрика хиты.
- `HITS_V2` — Метрика обновляемые хиты.
- `VISITS` — Метрика визиты.


_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "ce_id": 0,
  "table_name": "example",
  "status": "example",
  "columns": [
    "example"
  ],
  "statistics": {
    "bytes_per_second_by_hour": 0,
    "bytes_per_second_by_day": 0,
    "bytes_per_second_by_week": 0,
    "bytes_per_second_by_month": 0,
    "bytes_per_second_by_year": 0,
    "update_time": "2025-01-01T00:00:00Z"
  }
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CloudExport {#entity-CloudExport}

Список объектов `cloud_exports`.

#|
|| **Name** | **Description** ||
||

_folder_id_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

Идентификатор папки в Yandex Cloud.

_Pattern:_{.json-schema-reset .json-schema-assertion} `^[0-9a-zA-Z]{10,64}$`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_transfer_id_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

Идентификатор трансфера в Yandex Cloud.

_Pattern:_{.json-schema-reset .json-schema-assertion} `^[0-9a-zA-Z]{10,64}$`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_ce_id_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Внутренний идентификатор Метрики. Автоматически генерируется при создании экспорта.
{.table-cell}
||
||

_locked_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: boolean
{.table-cell}
||
||

_quota_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: integer

Значение квоты.
{.table-cell}
||
||

_status_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Статус экспорта в Yandex Cloud. Возможные значения:
- `ACTIVE` — экспорт включен.
- `DELETED` — экспорт отключен.


_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_tables_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [CloudExportTable](#entity-CloudExportTable)[]

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "ce_id": 0,
    "table_name": "example",
    "status": "example",
    "columns": [
      "example"
    ],
    "statistics": {
      "bytes_per_second_by_hour": 0,
      "bytes_per_second_by_day": 0,
      "bytes_per_second_by_week": 0,
      "bytes_per_second_by_month": 0,
      "bytes_per_second_by_year": 0,
      "update_time": "2025-01-01T00:00:00Z"
    }
  }
]
```

{% endcut %}
{.table-cell}
||
||

_type_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "ce_id": 0,
  "folder_id": "example",
  "transfer_id": "example",
  "status": "example",
  "quota": 0,
  "type": "example",
  "locked": true,
  "tables": [
    {
      "ce_id": 0,
      "table_name": "example",
      "status": "example",
      "columns": [
        "example"
      ],
      "statistics": {
        "bytes_per_second_by_hour": 0,
        "bytes_per_second_by_day": 0,
        "bytes_per_second_by_week": 0,
        "bytes_per_second_by_month": 0,
        "bytes_per_second_by_year": 0,
        "update_time": "2025-01-01T00:00:00Z"
      }
    }
  ]
}
```

{% endcut %}

</div>

</div>

</div>
<!-- endsource: ru/management-src/Upravlenie-eksportom-v-Yandex-Cloud/getExportsByCounter.md -->

[*Deprecated]: No longer supported, please use an alternative and newer version.