クイックスタート例

この例のクエリを ProductPerformanceView 過去 30 日間のアカウントのパフォーマンスを marketingMethodofferId。この簡単な例を試して 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 リクエストの URL

このリクエストには、Merchant Reports API サーバー( できます。

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"
      }
    }
  ]
}