---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md
  - https://yandex.com/dev/direct/doc/dg-v4/ru/live/CreateNewReport.md
  - href: en/live/CreateNewReport.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.com/dev/direct/doc/dg-v4/en/llms.txt

# CreateNewReport (Live)
Generates a campaign statistics report on the server.

{% note alert %}

Disabled method. Use version 5 of the API.

For information about the compatibility of methods between versions Live 4 and 5, see the [Migration guide](https://yandex.com/dev/direct/doc/migration/concepts/methods.md).

{% endnote %}



{% note warning %}

Instead of reporting, it is preferable to receive statistics by using the methods [GetSummaryStat ()](https://yandex.com/dev/direct/doc/dg-v4/en/live/GetSummaryStat.md) and [GetBannersStat (Live)](https://yandex.com/dev/direct/doc/dg-v4/en/live/GetBannersStat.md), if the amount of data they have proposed is sufficient.

{% endnote %}


The method returns the ID of the future report. With this ID, you can find out whether the report is ready and get a link for downloading the report file (using the [GetReportList](https://yandex.com/dev/direct/doc/dg-v4/en/reference/GetReportList.md) method). The average time for generating a report is one to two minutes.

## Restrictions {#restrictions}

For a single campaign, a maximum of 300 calls of the `CreateNewReport` method are allowed per day.

For a single user, no more than five reports are stored on the server. On an attempt to create a sixth report, an error message is returned with error code [31](https://yandex.com/dev/direct/doc/dg-v4/en/reference/ErrorCodes.md#ErrorCode31). Reports are stored on the server for five hours, then deleted automatically. Use the [DeleteReport](https://yandex.com/dev/direct/doc/dg-v4/en/reference/DeleteReport.md) method to delete a report manually.

**Report period**

 
:   The report period set by the `StartDate` and `EndDate` parameters must not be more than:
    
    - 367 days, for reports with data grouped by ads (clBanner), by keywords (clPhrase), by impression type (clImage) and/or by days.
    - 31 days, for reports with any other grouping.
    
    If a longer report period is set, an error message is returned with code [5](../reference/ErrorCodes.md#ErrorCode5).
    
    Statistics are available for the three years prior to the current month. For example: on September 15, 2016, you can get data starting from September 1, 2013.

**Goals and conversions**

 
:   To get data about visitors' behavior on the site (`goal_id`, `session_depth`, `goal_conversion`, `goal_cost`, `goal_conversions_num`, `revenue`, and `roi`), a Yandex Metrica tag must be installed on the advertiser's site. The tag ID must be specified in the AdditionalMetrikaCounters campaign parameter.
    
    For `goal_id`, `goal_conversion`, `goal_cost`, `goal_conversions_num`, `revenue`, and `roi` it is also required that the tag has [goals](https://yandex.ru/support/metrika/general/goals.xml)[goals](https://yandex.com/support/metrica/general/goals.xml) set up. For `revenue` and `roi`, the code snippet must transmit the [order price](https://yandex.ru/support/metrika/data/e-commerce.xml)[order price](https://yandex.com/support/metrika/data/e-commerce.xml).

**Average position**

 
:   Data on an ad's average position is available starting from November 1, 2014.

**Device type**

 
:   Data on the device type is available starting from November 1, 2014.

**User's gender and age group**

 
:   Data on the user's gender and age group is available starting from July 22, 2015.

**Type of operating system and type of connection**

 
:   OS type data is available starting from September 15, 2015.
    
    Connection type data is available starting from October 16, 2015.

**Bid adjustment**

 
:   Data for a retargeting condition used for applying bid adjustments for website users is available starting from July 22, 2016.

## New in the Live 4 version

The Currency input parameter is required for campaigns that use a real currency.

Added the input parameters Currency, IncludeVAT, and IncludeDiscount.

The goal_conversions_num indicator was added to the report. For the GroupByColumns input parameter, the clGoalConversionsNum value was added.

The shows_average_position and clicks_average_position indicators were added to the report. For the GroupByColumns input parameter, the clAveragePosition value was added.

Added the device_type indicator to the report. Added the clDeviceType value for the GroupByColumns input parameter.

The revenue and roi indicators were added to the report. Added the clROI value for the GroupByColumns input parameter.

The age and gender indicators were added to the report. Added the clDemographics value for the GroupByColumns input parameter. Added the Age and Gender input parameters.

Added the mobile_platform and carrier_type indicators to the report. Added the clMobilePlatofrm and clCarrierType values for the GroupByColumns input parameter. Added the MobilePlatform and CarrierType input parameters.

For “Dynamic text ads” campaigns, if the GroupByColumns parameter is set to "clPhrase", the report contains entries with the `WebpageID` attribute showing the data source for generating dynamic ads.

The rl_adjustment_id indicator has been added to the report. The value "clAdjustment" has been added to the GroupByColumns input parameter.

Add the Video value for the stat_type indicator.


## Input data {#input}

The input data structure in JSON is shown below.

```javascript
{
   "method": "CreateNewReport",
   "param": {
      /* NewReportInfo */
      "CampaignID": (int),
      "StartDate": (date),
      "EndDate": (date),
      "GroupByColumns": [
         (string)
         ...
      ],
      "Limit": (int),
      "Offset": (int),
      "GroupByDate": (string),
      "OrderBy": [
         (string)
         ...
      ],
      "TypeResultReport": (string),
      "CompressReport": (int),
      "Filter": {
         /* NewReportFilterInfo */
         "PageType": (string),
         "PositionType": (string),
         "Banner": [
            (long)
            ...
         ],
         "Geo": [
            (int)
            ...
         ],
         "Phrase": [
            (string)
            ...
         ],
         "PageName": [
            (string)
            ...
         ],
         "StatGoals": [
            (int)
            ...
         ],
         "WithImage": (string),
         "DeviceType": (string),
         "Age": [
            (string)
            ...
         ],
         "Gender": [
            (string)
            ...
         ],
         "MobilePlatform": [
            (string)
            ...
         ],
         "CarrierType": [
            (string)
            ...
         ]    
      },
      "Currency": (string),
      "IncludeVAT": (string),
      "IncludeDiscount": (string)
   }
}
```

Parameters are described below.


#|
||
**<sup >Parameter</sup>**
|
**<sup >Description</sup>**
|
**<sup >Required</sup>**
||

||
**<sub >NewReportInfo object</sub>**
||
||
`CampaignID`
|
ID of the campaign that the report is being generated for.
|
Yes
||
||
`StartDate`
|
The start date of the report, `YYYY-MM-DD`.
|
Yes
||
||
`EndDate`
|
The end date of the report, `YYYY-MM-DD`.
|
Yes
||
||
`GroupByColumns`
|
Names of indicators to output in the report in addition to the statistical data. Possible values:

- clBanner — ID of the ad, `bannerID`.
- clDate — Date when statistics were collected, `statDate`.
- clPage — Data about display sites, `placeName` and `placeType`.
- clGeo — ID of the region for impressions, `regionID`.
- clPhrase — A keyword ID (`phraseID`), a Yandex Catalog category (`rubricID`), a retargeting ID (`DictID`), or the ID of a data source for generating dynamic ads (`WebpageID`).
- clStatGoals — Date about Yandex Metrica: `goal_id`, `session_depth`, `goal_conversion`, and `goal_cost` (see [Goals and conversions](#goals-data)
- clGoalConversionsNum — Data about Yandex Metrica: the number of goal visits `goal_conversions_num` (see [Goals and conversions](#goals-data) We recommend setting this value together with clStatGoals.
- clPositionType — Display position, `position_type`.
- clImage — Format of the ad display `stat_type`, as well as the ad ID `bannerID` (the clBanner value is automatically added to the input data).
- clAveragePosition — The average ad display position `shows_average_position` and the average position of clicks on the ad `clicks_average_position`. To get these indicators for each ad individually, specify the clAveragePosition value together with clBanner.
- clDeviceType — The type of device the ad is shown on.
- clROI — The income `revenue` and return on investment `roi`. [Goals and conversions](#goals-data)
- clDemographics — The user's age group (`age`) and gender (`gender`).
- clMobilePlatform — The OS type (`mobile_plaform`). Available only for campaigns with the type “Ads for mobile apps”.
- clCarrierType — The type of connection (`carrier_type`). Available only for campaigns with the type “Ads for mobile apps”.
- clAdjustment — ID of the retargeting condition `rl_adjustment_id` used for applying bid adjustments (this indicator is only available for “Text & Image Ads” or “Ads for mobile apps” campaigns).
|
No
||
||
`GroupByDate`
|
Calculate cumulative statistics by time period:

- day — By the day of the week (initial value).
- week — By the week.
- month — By the month.

This parameter should be set if the `GroupByColumns` array has the clDate value; otherwise, the parameter is ignored.
|
No
||
||
`OrderBy`
|
Names of indicators to sort report entries by. Acceptable values are listed in the description for the `GroupByColumns` parameter.
|
No
||
||
`Limit`
|
Total number of items from the database to display in the report (more than zero).
The `Limit` and `Offset` parameters are used for selecting entries by page.
|
No
||
||
`Offset`
|
Entry number to start the selection from (numbering starts from zero).

The `Limit` and `Offset` parameters are used for selecting entries by page.
|
If the `Limit` parameter is set
||
||
`TypeResultReport`
|
Report format. Currently, only the “xml” value is used.
|
No
||
||
`CompressReport`
|
Method for compressing the report:

- 0 or omitted parameter — Do not compress.
- 1 — Compress using gzip.
|
No
||
||
`Filter`
|
A `NewReportFilterInfo` object with parameters for filtering entries for the report. If omitted, entries will not be filtered.
|
No
||
||
`Currency`
|
The currency to use for amounts in the response.

Acceptable values: RUB, CHF, EUR, KZT, TRY, UAH, USD, BYN. The value must match the campaign currency; otherwise, an error is returned with code [245](https://yandex.com/dev/direct/doc/dg-v4/en/reference/ErrorCodes.md#BadCurrency).

For campaigns in units, either omit the parameter or pass NULL.
|
For campaigns in a real currency
||
||
`IncludeVAT`
|
Calculate VAT for the cost of clicks in a currency — Yes/No. When the value is Yes, amounts shown in the response will include VAT. If omitted, Yes is assumed.

If the `Currency` parameter is omitted, the `IncludeVAT` parameter is ignored.
|
No
||
||
`IncludeDiscount`
|
Calculate the discount for the cost of clicks in a currency — Yes/No.

When the value is Yes, the report will show amounts that include the discount (in other words, the amounts that are actually deducted from the campaign balance). When the value is No, the report will show amounts before the discount is applied. If omitted, Yes is assumed.


{% note info %}

For campaigns that operate in a currency, the discount is applied when the cost per click is deducted.

{% endnote %}


If the `Currency` parameter is omitted, the "No" value is assumed.
|
No
||

||
**<sub >NewReporFiltertInfo object</sub>**
||
||
`PageType`
|
Filter entries by the type of site where ads are displayed:

- search — Yandex search and search sites within the Yandex Advertising Network.
- context — Sites in the Yandex Advertising Network, other than search platforms.
- all or omitted — On all types of sites.
|
No
||
||
`PositionType`
|
Filter entries based on the display block:

- premium — In Premium Placement.
- other — Everywhere other than Premium Placement.
|
No
||
||
`Banner`
|
Array of ad IDs. Selects entries about the display of the specified ads.
|
No
||
||
`Geo`
|
Array of region IDs. Selects entries about ad displays in the specified regions.
|
No
||
||
`Phrase`
|
Array of strings. Selects entries about ad displays for the keywords that contain any of the specified strings as substrings (not case-sensitive).


{% note info %}

- This parameter can only be set for campaigns with the type “Text & Image Ads” or “Ads for mobile apps”.
    
- The parameter is ignored if "clPhrase" is omitted in the `GroupByColumns` parameter.

{% endnote %}
|
No
||
||
`PageName`
|
Array of site names. Selects entries about ad displays on the specified sites.

The Yandex search site has the name “Yandex”. For other sites, the domains are specified that are registered in Yandex Direct, such as “mail.ru” and “nigma.ru”.
|
No
||
||
`StatGoals`
|
ID of the Yandex Metrica goal (specified as an array item). More than one ID is not allowed.

If omitted, the Yandex Metrica indicators in the report contain aggregated data for all goals.

Use the [GetStatGoals (Live)](https://yandex.com/dev/direct/doc/dg-v4/en/live/GetStatGoals.md) method to obtain a list of goals.
|
No
||
||
`WithImage`
|
Select entries about ad displays either with or without images. Possible values: yes – with images; no – text; both – all (text, image, and video).
|
No
||
||
`DeviceType`
|
Select entries about ad displays on a specific type of device. Acceptable values: desktop/mobile/tablet.
|
No
||
||
`Age`
|
Select entries about ad displays to users in the specified age groups. The array can have the following values: AGE_0_17, AGE_18_24, AGE_25_34, AGE_35_44, AGE_45, AGE_UNKNOWN.
|
No
||
||
`Gender`
|
Select entries about ad displays to users of the specified gender. The array can have the following values: GENDER_MALE, GENDER_FEMALE, GENDER_UNKNOWN.
|
No
||
||
`MobilePlatform`
|
Select entries about ad displays on devices with the specified type of OS. The array can have the following values: ANDROID, IOS, OS_TYPE_UNKNOWN.

Filtration by the OS type is available only for campaigns with the type “Ads for mobile apps”.
|
No
||
||
`CarrierType`
|
Select entires about ad displays on the specified type of connection. The array can have the following values: CELLULAR (mobile), STATIONARY (wi-fi), CARRIER_TYPE_UNKNOWN.

Filtration by the connection type is available only for campaigns with the type “Ads for mobile apps”.
|
No
||
|#


## Output data {#output}

The method returns the ID of the future report, as shown in the following example.

```javascript
{
   "data": 137456
}
```


## Examples of input data {#example}

## Python

```python
{
   'CampaignID': 1327944,
   'StartDate': '2013-05-01',
   'EndDate': '2013-05-31',
   'GroupByColumns': [
      'clBanner',
      'clStatGoals',
      'clGoalConversionsNum',
      'clAveragePosition',
      'clROI'
   ],
   'Filter': {
      'PageType': 'search',
      'PositionType': 'other',
      'Banner': [1974642, 20920155, 20155899, 64654],
      'Geo': [213],
      'Phrase': [u'refrigerator'],
      'PageName': [u'Yandex','nigma.ru'],
      'StatGoals': [18565]
   },
   'Limit': 5000,
   'Offset': 30000,
   'GroupByDate': 'week',
   'OrderBy': ['clBanner'],
   'TypeResultReport': 'xml',
   'CompressReport': 1
}
```

## PHP

```php
array(
   'CampaignID' => 1327944,
   'StartDate' => '2013-05-01',
   'EndDate' => '2013-05-31',
   'GroupByColumns' => array(
      'clBanner',
      'clStatGoals',
      'clGoalConversionsNum',
      'clAveragePosition',
      'clROI'
   ),
   'Filter' => array(
      'PageType' => 'search',
      'PositionType' => 'other',
      'Banner' => array(1974642, 20920155, 20155899, 64654),
      'Geo' => array(213),
      'Phrase' => array('refrigerator'),
      'PageName' => array('Yandex','nigma.ru'),
      'StatGoals' => array(18565)
   ),
   'Limit' => 5000,
   'Offset' => 30000,
   'GroupByDate' => 'week',
   'OrderBy' => array('clBanner'),
   'TypeResultReport' => 'xml',
   'CompressReport' =1
)
```

## Perl

```perl
{
   'CampaignID' => 1327944,
   'StartDate' => '2013-05-01',
   'EndDate' => '2013-05-31',
   'GroupByColumns' => [
      'clBanner',
      'clStatGoals',
      'clGoalConversionsNum',
      'clAveragePosition',
      'clROI'
   ],
   'Filter' ={
      'PageType' => 'search',
      'PositionType' => 'other',
      'Banner' => [1974642, 20920155, 20155899, 64654],
      'Geo' => [213],
      'Phrase' => ['refrigerator'],
      'PageName' => ['Yandex','nigma.ru'],
      'StatGoals' => [18565]
   },
   'Limit' => 5000,
   'Offset' => 30000,
   'GroupByDate' => 'week',
   'OrderBy' => ['clBanner'],
   'TypeResultReport' => 'xml',
   'CompressReport' =1
}
```


## Sample report {#example-report}

A sample report in XML format is shown below.

```xml
<?xml version="1.0" encoding="UTF-8" ?>
<report
   <reportID>1234</reportID>
   <campaignID>1234567</campaignID>
   <startDate>2013-05-01</startDate>
   <endDate>2013-05-31</endDate>
  <phrasesDict>
      <phrase type="phrase" phraseID="2" value="refrigeration equipment"
    
  
   </phrasesDict>
   <stat>
      <row bannerID="123456"
           phraseID{stat}="2"
           phrase_id="538205157"
           statDate="2013-05-15"
           sum_search="10"
           sum_context="2"
           shows_search="1000"
           shows_context="123"
           clicks_search="100"
           clicks_context="23"
           sum="12"
           shows="1234"
           clicks="123"
           regionID="1"
           placeName="Yandex"
           placeType="search"
           goal_id="18565"
           goal_conversion="25.91"
           goal_cost="1.54"
           session_depth="9.35"
           goal_conversions_num="28"  
           revenue="245.25"
           roi="3.77"  
           position_type="premium"
           stat_type="Text"
           shows_average_position="4.87"
           clicks_average_position="4.95"
           device_type="desktop"
           age="AGE_25_34"
           gender="GENDER_FEMALE"
           mobile_platform="IOS"
           carrier_type="STATIONARY"
           rl_adjustment_id="14777"/>
      <row bannerID="123457"
           DictID{stat}="912"
           RetargetingID="3097"  
           statDate="2013-05-25"
           sum_search="0"
           sum_context="96.35"
           shows_search="0"
           shows_context="755"
           clicks_search="0"
           clicks_context="57"
           sum="96.35"
           shows="755"
           clicks="57"
           regionID="1"
           placeName="catalog.tut.by"
           placeType="context"
           goal_id="18565"
           goal_conversion="28.88"
           revenue="132.01"
           roi="3.12"  
           goal_cost="1.54"
           session_depth="9.39"
           goal_conversions_num="11"  
           position_type="other"
           stat_type="Image"
           device_type="mobile"
           age="AGE_UNKNOWN"
           gender="GENDER_UNKNOWN"
           mobile_platform="ANDROID"
           carrier_type="CELLULAR"/>
   </stat>
</report>
```

The information output in the report is described below.


#|
||
**<sup >Element/attribute</sup>**
|
**<sup >Description</sup>**
|
**<sup >Output condition</sup>**
||

||
**<sub >report element</sub>**
||
||
reportID
|
ID of the report.
||
||
campaignID
|
The campaign ID.
||
||
startDate
|
The start date of the report, `YYYY-MM-DD`.
||
||
endDate
|
The end date of the report, `YYYY-MM-DD`.
||
||
phrasesDict
|
Keyword dictionary. Contains information about objects in the report: keywords, Yandex Catalog categories, retargetings, and targeting conditions for dynamic text ads.
||
||
stat
|
Statistical data.
||

||
**<sub >phrasesDict element</sub>**
||
||
phrase
|
Information about a keyword, category, retargeting, or targeting condition in the `type`, `phraseID`, `DictID`, `WebpageID` and `value` attributes.
||
||
<xmlatt >type</xmlatt>
|
Contains the value “phrase” in entries about keywords, “autotargeting” in entries about autotargeting, “rubric” in entries about Yandex Catalog categories, “retargeting” in entries about retargetings, or “webpage” in entries about the data source for dynamic text ads.
||
||
<xmlatt >phraseID</xmlatt>
|
ID of the keyword in the report.

1 — For [additional relevant keywords](https://yandex.ru/support/direct/keywords/related-keywords.html)[additional relevant keywords](https://yandex.com/support/direct/keywords/related-keywords.html).

11 — For [autotargeting](https://yandex.com/dev/direct/doc/dg/best-practice/auto-targeting.md).

The `phraseID` identifier exists only within the report and does not match the keyword ID in Yandex Direct. It is used for standardizing report data and links the `phrase` and `row` elements.
||
||
<xmlatt >rubricID</xmlatt>
|
ID of the category in the report.

Exists only within the report and does not match the category ID in Yandex Direct. Used for standardizing report data; links the `phrase` and `row` elements.
||
||
<xmlatt >DictID</xmlatt>
|
ID of the [retargeting](https://yandex.com/dev/direct/doc/dg-v4/en/concepts/retargeting.md#ret-params) in the report.

Exists only within the report and does not match the retargeting ID in Yandex Direct. Used for standardizing report data; links the `phrase` and `row` elements.
||
||
<xmlatt >WebpageID</xmlatt>
|
ID of the data source for generating dynamic ads:
- ID of the [targeting condition](https://yandex.com/dev/direct/doc/dg/objects/dynamictextadtarget.md) for dynamic ads, if the data source is website pages.
    
- ID of the filter, if the data source is a feed with product offers. You can only manage filters in the web interface at this time.
||
||
<xmlatt >value</xmlatt>
|
The keyword text, or the number of a Yandex Catalog category, or the name of a retargeting condition, or the name of a mobile app category, or the name of a targeting condition for dynamic ads, or the name of a filter, or the value “Automatically added keywords” (for [additional relevant keywords](https://yandex.ru/support/direct/keywords/related-keywords.html)[additional relevant keywords](https://yandex.com/support/direct/keywords/related-keywords.html)).
||

||
**<sub >stat element</sub>**
||
||
row
|
Statistics entry. The contents depend on the input parameters.
||
||
<xmlatt >sum</xmlatt>
|
The total cost of clicks deducted from the campaign balance (in the currency specified in the `Currency` input parameter).

See [Notes](#recalc) below.
||
||
<xmlatt >shows</xmlatt>
|
Number of impressions<sup >1</sup>.
||
||
<xmlatt >clicks</xmlatt>
|
Number of clicks<sup >1</sup>.
||
||
<xmlatt >bannerID</xmlatt>
|
The ad ID.
|
In the `GroupByColumns` parameter, the value of “clBanner” or “clImage” is specified.
||
||
<xmlatt >phraseID</xmlatt>
|
The keyword ID in the report (see the `phrasesDict` element).

The `phraseID` identifier exists only within the report and does not match the keyword ID in Yandex Direct. It is used for standardizing report data and links the `phrase` and `row` elements.
|
In the `GroupByColumns` input parameter, the “clPhrase” value is specified, and the entry also contains information about the keyword or Yandex Catalog category (but not about retargeting).
||
||
<xmlatt >phrase_id</xmlatt>
|
ID of the keyword, autotargeting, or category in Yandex Direct.

The ID might not exist in Yandex Direct when the report is being generated. This is because the IDs change when keywords are edited, and are deleted when keywords are removed.
|
In the `GroupByColumns` input parameter, the “clPhrase” and “clBanner” values are both set, and the entry contains information about the keyword or Yandex Catalog category (but not about retargeting).


{% note alert %}

This indicator is output to the report beginning with the Live 4 version.

{% endnote %}
||
||
<xmlatt >rubricID</xmlatt>
|
ID of the Yandex Catalog category in the report (see the `phrasesDict` element).

Exists only within the report and does not match the category ID in Yandex Direct. Used for standardizing report data; links the `phrase` and `row` elements.
|
In the `GroupByColumns` input parameter, the “clPhrase” value is specified, and the entry contains information about the Yandex Catalog category.
||
||
<xmlatt >DictID</xmlatt>
|
The retargeting ID in the report (see the `phrasesDict` element).

Exists only within the report and does not match the retargeting ID in Yandex Direct. Used for standardizing report data; links the `phrase` and `row` elements.
|
In the `GroupByColumns` input parameter, the “clPhrase” value is set, and the entry contains information about retargeting.
||
||
<xmlatt >WebpageID</xmlatt>
|
ID of the data source for generating dynamic ads:
- ID of the [targeting condition](https://yandex.com/dev/direct/doc/dg/objects/dynamictextadtarget.md) for dynamic ads, if the data source is website pages.
    
- ID of the filter, if the data source is a feed with product offers. You can only manage filters in the web interface at this time.
|
The `GroupByColumns` input parameter is set to “clPhrase”, and the entry contains information about the data source for generating dynamic ads.
||
||
<xmlatt >RetargetingID</xmlatt>
|
Retargeting ID in Yandex Direct.
|
In the `GroupByColumns` input parameter, the “clPhrase” value is set, and the entry contains information about retargeting.
||
||
<xmlatt >statDate</xmlatt>
|
The data statistics are provided for. If the [GroupByDate](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByDate) input parameter has the value “week” or “month”, the first date of the week or month is specified.
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the value “clDate” is present.
||
||
<xmlatt >sum_search</xmlatt>
|
The total cost of clicks on search (in the currency specified in the `Currency` input parameter).

See [Notes](#recalc) below.
|
The [PageType](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportFilterInfo-PageType) input parameter is omitted or has the value “all”.
||
||
<xmlatt >sum_context</xmlatt>
|
The total cost of clicks in the Yandex Advertising Network (in the currency specified in the `Currency` input parameter).

See [Notes](#recalc) below.
||
||
<xmlatt >shows_search</xmlatt>
|
Number of impressions in the search.
||
||
<xmlatt >shows_context</xmlatt>
|
Number of impressions in the Yandex Advertising Network.
||
||
<xmlatt >clicks_search</xmlatt>
|
Number of clicks in the search.
||
||
<xmlatt >clicks_context</xmlatt>
|
Number of clicks in the Yandex Advertising Network.
||
||
<xmlatt >regionID</xmlatt>
|
ID of the display region.
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the “clGeo” value is present.
||
||
<xmlatt >placeName</xmlatt>
|
Name of the site where the ad is being displayed.
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the value “clPage” is present.
||
||
<xmlatt >placeType</xmlatt>
|
Type of display platform: “search” — the search platform (including Yandex search and search sites in the Yandex Advertising Network), or “context” — a site in the Yandex Advertising Network.
||
||
<xmlatt >goal_id</xmlatt>
|
The ID of the [goal](https://yandex.ru/support/metrika/general/goals.html)[goal](https://yandex.com/support/metrica/general/goals.html) in Yandex Metrica, if it was passed in the `StatGoals` input parameter.

0 — If the ID was not passed. In this case, the other Yandex Metrica indicators contain aggregated data for all goals.
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the value “clStatGoals” is present.
||
||
<xmlatt >goal_conversion</xmlatt>
|
The percentage of goal visits as part of the total number of visits.
||
||
<xmlatt >goal_cost</xmlatt>
|
The average cost per conversion: the ratio of the cost of clicks to the number of conversions.
||
||
<xmlatt >session_depth</xmlatt>
|
Session depth for the site.
||
||
<xmlatt >goal_conversions_num</xmlatt>
|
Number of goal visits (conversions).
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the value “clGoalConversionsNum” is present.
||
||
<xmlatt >revenue</xmlatt>
|
Revenue (up to two decimal places) — the total of the order prices transmitted by the Yandex Metrica tag.
|
The [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array has the “clROI” value.
||
||
<xmlatt >roi</xmlatt>
|
The return on investment in advertising (up to two decimal places):

![](../_assets/roi-formula.png)
||
||
<xmlatt >position_type</xmlatt>
|
The ad display block: “premium” for Premium Placement, or “other” for other ad blocks.
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the value “clPositionType” is present.
||
||
<xmlatt >stat_type</xmlatt>
|
Format of the ad impression. Possible values: Text, Image, Video.
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the “clImage” value is present.
||
||
<xmlatt >shows_average_position</xmlatt>
|
[Average position](https://yandex.ru/support/direct-tooltips/average-position.html)[Average position](https://yandex.com/support/direct-tooltips/average-position.html) where the ad is displayed. Calculated using only displays on the first page of Yandex search results.

The top position is assigned the number 1.
|
In the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array, the value “clAveragePosition” is present.
||
||
<xmlatt >clicks_average_position</xmlatt>
|
[Average position](https://yandex.ru/support/direct-tooltips/average-position.html)[Average position](https://yandex.com/support/direct-tooltips/average-position.html) where the ad was clicked. Calculated using only clicks on the first page of Yandex search results.
||
||
<xmlatt >device_type</xmlatt>
|
The type of device the ad was shown on. Acceptable values: desktop/mobile/tablet.
|
The “clDeviceType” value is present in the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array.
||
||
<xmlatt >age</xmlatt>
|
User's age group. Possible values: AGE_0_17, AGE_18_24, AGE_25_34, AGE_35_44, AGE_45, AGE_UNKNOWN.
|
The “clDemographics” value is present in the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array.
||
||
<xmlatt >gender</xmlatt>
|
Gender of the user. Possible values: GENDER_MALE, GENDER_FEMALE, GENDER_UNKNOWN.
|
The “clDemographics” value is present in the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array.
||
||
<xmlatt >mobile_platform</xmlatt>
|
The type of operating system. Possible values: ANDROID, IOS, OS_TYPE_UNKNOWN.
|
The campaign type is “Ads for mobile apps”, and the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array has the value “clMobilePlatform”.
||
||
<xmlatt >carrier_type</xmlatt>
|
Type of connection. Possible values: CELLULAR (mobile), STATIONARY (wi-fi), CARRIER_TYPE_UNKNOWN.
|
The campaign type is “Ads for mobile apps”, and the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array has the value “clCarrierType”.
||
||
<xmlatt >rl_adjustment_id</xmlatt>
|
ID of a retargeting condition used for applying bid adjustments for website users.
|
The campaign type is “Text & Image Ads” or “Ads for mobile apps”, and the [GroupByColumns](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportInfo-GroupByColumns) array has the value “clAdjustment”.
||

||
**Notes**
||
||
1. The values of `sum`, `shows` and `clicks` depend on the [PageType](https://yandex.com/dev/direct/doc/dg-v4/en/live/CreateNewReport.md#NewReportFilterInfo-PageType) input parameter:
    
    - when the value is “all” or `PageType` is omitted, cumulative data is given for the search and the Yandex Advertising Network. However, data is given separately for the search and the Yandex Advertising Network in `sum_search`, `shows_search`, `clicks_search`, `sum_context`, `shows_context`, and `clicks_context`.
    - If the value is “search”, data is provided for Yandex search and search sites in the Yandex Advertising Network.
    - If the value is “context”, data is provided for sites in the Yandex Advertising Network, other than search sites.
    
1. The cost of clicks that is expressed in a currency may include or exclude VAT, depending on the value of the IncludeVAT input parameter.
    
    _Cost of clicks with VAT_ = _Cost of clicks without VAT_ × (1 + _VAT rate_)
    
1. The cost of clicks that is expressed in a currency may or may not include the discount, depending on the value of the IncludeDiscount input parameter.
    
    _Cost of clicks before applying the discount_ = _Cost of clicks actually deducted from the balance_ / (1 – _Discount_)
    
    {% note info %}
    
    For campaigns that operate in a currency, the discount is applied when the cost per click is deducted.
    
    {% endnote %}
    
1. If the campaign was run in Yandex units, the amounts are returned “as is”, without any other conversions.
||
|#


