管理轉換來源

以下說明如何使用 Content API for Shopping 管理轉換來源 。

在 Merchant Center 轉換來源中,您可以查看免費版的轉換資料 商家資訊,以及 你的網站和 讓他們使用服務帳戶

使用 Content API for Shopping 管理轉換來源前, 必須設定自動標記聲明網站擁有權 商家帳戶。

您可以使用 Google Analytics 來追蹤免費產品資訊和網站上的轉換。

如果您具備 Google Analytics 資源的管理員存取權 將資源連結至商家帳戶,方法是建立 Google Analytics 轉換 來源。

這個例子可以 您商家下的 ConversionSource 物件 帳戶:

POST https://shoppingcontent.googleapis.com/content/v2.1/{merchantId}/conversionsources/
{
 "googleAnalyticsLink": {
   "propertyId": {propertyId}
  }
}

以下是含有 ConversionSource 物件的回應範例。Google 敬上 Analytics 轉換來源已設定「googleAnalyticsLink」欄位,以及 conversionSourceId的開頭為 galk:

{
  "conversionSourceId": "galk:{propertyId}",
  "googleAnalyticsLink": {
    "propertyId": "{propertyId}",
    "attributionSettings": {
       "attributionLookbackWindowInDays": 90,
       "atributionModel": "CROSS_CHANNEL_DATA_DRIVEN",
       "conversionType": [
        {
           "name": "purchase",
           "includeInReporting": true
        }
       ]
   },
   "propertyName": "My Property Name"
  },
 "state": "ACTIVE",
 "controller": "MERCHANT"
}

使用 Google 代碼

如果您沒有 Google Analytics 資源,可以傳送轉換資料 即可直接連結至商家帳戶,方法是使用 Google 代碼:您可以使用 Google 代碼管理工具 API:設定現有 Google 代碼,或是使用當您新增代碼時自動建立的新代碼 網站轉換來源。

以下範例會為網站建立新 ConversionSource 物件

POST https://shoppingcontent.googleapis.com/content/v2.1/{merchantId}/conversionsources/
{
  "merchantCenterDestination": {
    "displayName": "My tag destination",
    "attributionSettings": {
      "attributionLookbackWindowInDays": 60,
      "attributionModel": "CROSS_CHANNEL_LAST_CLICK"
    },
    "currencyCode": "CHF"
  }
}

以下是含有 ConversionSource 物件的回應範例。網站 轉換來源已設定「merchantCenterDestination」欄位和 conversionSourceId的開頭為 mcdn:

{
  "conversionSourceId": "mcdn:12341241234",
  "merchantCenterDestination": {
    "destinationId": "MC-ABCD1234",
    "attributionSettings": {
      "attributionLookbackWindowInDays": 60,
      "attributionModel": "CROSS_CHANNEL_LAST_CLICK"
    },
    "displayName": "My tag destination",
    "currencyCode": "CHF"
  },
  "state": "ACTIVE",
  "controller": "MERCHANT"
}

建立轉換來源後,您可以將轉換來源的 destinationIdGoogle 代碼,直接從 Analytics 中取得轉換資料 網站。