クイックスタート例

product_performance_view に対するサンプルクエリを次に示します。このクエリでは、過去 30 日間のアカウントのパフォーマンスが marketing_methodoffer_id 別に返されます。Merchant Reports API に慣れるには、この簡単な例を試してみてください。

このレポートを取得するには、パフォーマンスと分析情報のロールが必要です。詳しくは、要件をご覧ください。

リクエストを送信するには、次の Merchant Center Query Language ステートメントを accounts.reports.search メソッドに渡します。

SELECT
  marketing_method,
  offer_id,
  impressions,
  clicks,
  click_through_rate
FROM product_performance_view
WHERE date BETWEEN '2023-11-01' AND '2023-11-30'

HTTP リクエストの URL

リクエストは、次の URL にある 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
              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"
      }
    }
  ]
}