以下是对
ProductPerformanceView
返回您的账号在过去 30 天内的效果,细分数据为
marketingMethod
和 offerId
。您可以尝试通过这个简短的示例
熟悉 Merchant Reports API。
您需要了解性能和数据分析 角色以获取此报告。 请参阅 要求 。
要发出请求,请传递以下 Merchant Center 查询
Language 语句添加到
accounts.reports.search
方法:
SELECT
marketingMethod,
offerId,
impressions,
clicks,
clickThroughRate
FROM ProductPerformanceView
WHERE date BETWEEN '2020-11-01' AND '2020-11-30'
HTTP 请求网址
此请求包含发送到 Merchant Reports API 服务器的 HTTP POST(位于 以下网址:
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 marketingMethod, offerId, impressions, clicks, clickThroughRate FROM ProductPerformanceView WHERE date BETWEEN '2020-11-01' AND '2020-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"
}
}
]
}