客戶目標

每個 CustomerConversionGoal 都會決定是否讓 Google Ads 根據指定的 categoryorigin 來最佳化轉換動作。當您將 ConversionActions 加入帳戶的 Google Ads 轉換客戶時,Google Ads 就會自動建立 CustomerConversionGoals,確保您使用的每個 categoryorigin 組合都有 CustomerConversionGoal

由於 Google Ads 會自動處理 CustomerConversionGoal 物件的建立作業,因此您需要設定每個目標的 biddable 屬性,來指定轉換目標是否為帳戶預設目標。如果 Google Ads 應根據目標的 categoryorigin 針對轉換動作進行最佳化,請將 biddable 設為 true,並將 biddable 設為 false。這個值 truefalse 等同於轉換動作設定中的「做為帳戶預設目標」和「不要用做帳戶預設目標」選項。

新增類別和來源組合

假如您的 Google Ads 轉換客戶建立 ConversionAction,但其他動作中沒有新動作的 categoryorigin 組合,Google Ads 會自動為 categoryorigin 建立新的 CustomerConversionGoal,並將 biddable 屬性預設為 true

不過,Google Ads 會將下列 categoryorigin 組合的 biddable 預設為 false

category 來源
BEGIN_CHECKOUT GOOGLE_HOSTED
聯絡人 GOOGLE_HOSTED
互動 GOOGLE_HOSTED
GET_DIRECTIONS GOOGLE_HOSTED
PAGE_VIEW GOOGLE_HOSTED
註冊 GOOGLE_HOSTED
購買 GOOGLE_HOSTED
STORE_SALE 商店
STORE_VISIT 商店

擷取客戶目標

請使用以下查詢,擷取帳戶的 CustomerConversionGoals 清單。

SELECT
  customer_conversion_goal.resource_name,
  customer_conversion_goal.category,
  customer_conversion_goal.origin,
  customer_conversion_goal.biddable
FROM customer_conversion_goal

常見的例子是網頁瀏覽轉換目標,由 PAGE_VIEWcategoryWEBSITEorigin 組合表示。

如要擷取屬於這個轉換目標的轉換動作 (比對目標摘要頁面顯示 Google Ads UI 的內容),請使用以下查詢:

SELECT
  conversion_action.category,
  conversion_action.origin,
  conversion_action.name
FROM conversion_action
WHERE conversion_action.category = 'PAGE_VIEW'
  AND conversion_action.origin = 'WEBSITE'
  AND conversion_action.status = 'ENABLED'

另一個常見的例子是,在 Google Ads 使用者介面中將群組顯示為「其他」。 方法是將 category 設為 DEFAULT