評估產品

你可以使用 Merchant Reports API 查看成效 資料,或按照下列條件篩選產品: 並改善您的價格

評估成效

您可以使用 Merchant Reports API ProductPerformanceView敬上 擷取成效 指標

需求條件

您需要有成效和洞察資訊 角色,以便擷取這份報表。

若要授予帳戶效能和深入分析角色,請修補 User敬上 PERFORMANCE_REPORTING。 。

accounts.v1beta.accounts.users.patch敬上 則會取代整個 User 資源。為避免資訊遺失,請呼叫 accounts.v1beta.accounts.users.get 才能取得完整的 User 資源,然後在 accounts.v1beta.accounts.users.patch 要求。

查詢範例

以下查詢會擷取 impressionsclicks 和 在特定 30 天內,帳戶中所有產品的價格為 clickThroughRate 。如要提出要求,請傳送下列 Merchant Center 查詢 Language 陳述式 accounts.reports.search敬上 方法:

SELECT impressions, clicks, clickThroughRate
FROM ProductPerformanceView
WHERE date BETWEEN '2020-12-01' AND '2020-12-30'

您也可以區隔報表中的指標 查詢更詳細的成效報表

篩選產品

您可以使用 Merchant Reports API ProductView敬上 顯示經過篩選的產品資料 (包括產品狀態)。適用對象 舉例來說,您可以查詢「ProductView」列出有問題的產品,或是 查看新產品清單並驗證放送情形

您必須在查詢的 SELECT 子句中加入 id 欄位。id 值與產品的 REST 相同 ID

您可以根據所有「可用」 欄位itemIssues 除外。您可以根據所有可用的欄位排序回應 但以下例外:

  • gtin
  • itemIssues

以下範例會傳回具有狀態的產品 NOT_ELIGIBLE_OR_DISAPPROVED。如要提出要求,請傳遞下列 Center Query Language 陳述式 這個 accounts.reports.search敬上 方法:

SELECT
  id,
  offerId,
  feedLabel,
  title,
  aggregatedReportingContextStatus
  itemIssues
FROM ProductView
WHERE aggregatedReportingContextStatus = 'NOT_ELIGIBLE_OR_DISAPPROVED'

以下是前述查詢的回應範例:

{
  "results": [
    {
      "productView": {
        "id": "online~en~US~id0"
        "offerId": "id0",
        "feedLabel": "US",
        "aggregatedReportingContextStatus": "NOT_ELIGIBLE_OR_DISAPPROVED",
        "itemIssues": [
          {
            "type": {
              "code": "invalid_string_value",
              "canonicalAttribute": "n:product_code"
            },
            "severity": {
              "severityPerReportingContext": [
                {
                  "reportingContext": "SHOPPING_ADS",
                  "disapprovedCountries": [
                    "US"
                  ]
                },
                {
                  "reportingContext": "FREE_LISTINGS",
                  "disapprovedCountries": [
                    "US"
                  ]
                }
              ],
              "aggregatedSeverity": "DISAPPROVED"
            },
            "resolution": "MERCHANT_ACTION"
          },
          {
            "type": {
              "code": "apparel_missing_brand",
              "canonicalAttribute": "n:brand"
            },
            "severity": {
              "severityPerReportingContext": [
                {
                  "reportingContext": "SHOPPING_ADS",
                  "disapprovedCountries": [
                    "US"
                  ]
                }
              ],
              "aggregatedSeverity": "DEMOTED"
            },
            "resolution": "MERCHANT_ACTION"
          }
        ]
      }
    }
  ]
}

詳情請參閱 ProductView敬上 。

改善價格

您可以使用價格分析檢視畫面,查看以下項目的建議特價 以及更新後可能帶來的成效預測結果 你的產品價格。價格分析報表可協助你為 產品。

請參閱「透過價格分析改善產品價格 報表

查詢 PriceInsightsProductView敬上 即可查看產品的建議特價。

你可以使用以下範例查看產品的建議特價。目的地: 提出要求,請傳送下列 Merchant Center 查詢 Language 陳述式 accounts.reports.search敬上 方法:

SELECT
  id,
  title,
  brand,
  price,
  suggested_price,
  predictedImpressionsChangeFraction,
  predictedClicksChangeFraction,
  predictedConversionChangeFraction
FROM PriceInsightsProductView

以下是前述查詢的回應範例:

{
   "results": [
    {
      "priceInsightsProductView": {
        "id": "online~en~US~12345",
        "title": "UGG Women's s Classic Mini",
        "brand": "UGG",
        "price" {
          "amountMicros": "124990000",
          "currencyCode": "USD"
        },
        "suggestedPrice" {
          "amountMicros": "135680000",
          "currencyCode": "USD"
        },
        "predictedImpressionsChangeFraction": "0.12609300017356873",
        "predictedClicksChangeFraction": "0.508745014667511",
        "predictedConversionsChangeFraction": "2.3431060314178467"
      }
    },
    {
      "priceInsightsProductView": {
        "id": "online~en~US~12346",
        "title": "Nike React Infinity Run Flyknit 2",
        "brand": "Nike",
        "price" {
          "amountMicros": "119990000"
          "currencyCode": "USD"
        },
        "suggestedPrice" {
          "amountMicros": "125440000",
          "currencyCode": "USD"
        },
        "predictedImpressionsChangeFraction": "0.1799899935722351",
        "predictedClicksChangeFraction": "0.6203680038452148",
        "predictedConversionsChangeFraction": "1.234868049621582"
      }
    },
    {
      "priceInsightsProductView": {
        "id": "online~en~US~12347",
        "title": "  New Balance 327 White Trainers",
        "brand": "New Balance",
        "price" {
          "amountMicros": "84990000"
          "currencyCode": "USD"
        },
        "suggestedPrice" {
          "amountMicros": "82000000",
          "currencyCode": "USD"
        },
        "predictedImpressionsChangeFraction": "0.11538799852132797",
        "predictedClicksChangeFraction": "0.5869849920272827",
        "predictedConversionsChangeFraction": "1.3622850179672241"
      }
    }
  ]
}