Ниже приведен пример запроса к product_performance_view
, который возвращает эффективность вашего аккаунта за последние 30 дней, сегментированную по marketing_method
и offer_id
. Вы можете попробовать этот быстрый пример, чтобы ознакомиться с API Merchant Reports.
Чтобы получить этот отчет, вам нужна роль «Производительность и аналитика» . Более подробную информацию смотрите в требованиях .
Чтобы выполнить запрос, передайте в метод accounts.reports.search
следующий оператор языка запросов Merchant Center :
SELECT
marketing_method,
offer_id,
impressions,
clicks,
click_through_rate
FROM product_performance_view
WHERE date BETWEEN '2023-11-01' AND '2023-11-30'
URL-адрес HTTP-запроса
Запрос состоит из HTTP POST к серверу API Merchant Reports по следующему URL-адресу:
https://merchantapi.googleapis.com/reports/v1beta/accounts/PARENT/reports:search
Полный пример HTTP-запроса
Вот полный пример, показывающий определение отчета, включенное в запрос HTTP POST:
POST /reports/v1beta/accounts/PARENT/reports:search HTTP/1.1 Host: merchantapi.googleapis.com User-Agent: curl Content-Type: application/json Accept: application/json Authorization: Bearer Parameters: { "query" : "SELECT marketing_method, offer_id, impressions, clicks, click_through_rate FROM product_performance_view WHERE date BETWEEN '2023-11-01' AND '2023-11-30'" }
Вот пример ответа:
{
"results": [
{
"productPerformanceView": {
"marketingMethod": "ADS",
"offerId": "12345",
"clicks": "38",
"impressions": "1038",
"clickThroughRate": "0.3661"
}
},
{
"productPerformanceView": {
"marketingMethod": "ADS",
"offerId": "12346",
"clicks": "126",
"impressions": "1126",
"clickThroughRate": "0.1119"
}
},
{
"productPerformanceView": {
"marketingMethod": "ORGANIC",
"offerId": "12346",
"clicks": "26",
"impressions": "526",
"clickThroughRate": "0.0494"
}
},
{
"productPerformanceView": {
"marketingMethod": "ADS",
"offerId": "12347",
"clicks": "227",
"impressions": "1227",
"clickThroughRate": "0.1850"
}
},
{
"productPerformanceView": {
"marketingMethod": "ORGANIC",
"offerId": "12347",
"clicks": "12",
"impressions": "512",
"clickThroughRate": "0.0234"
}
}
]
}