客戶目標

每個 CustomerConversionGoal 都會指定是否要讓 Google Ads 針對指定了 categoryorigin 的轉換動作進行最佳化。當您為帳戶的 Google Ads 轉換客戶加入 ConversionActions 時,Google Ads 會自動建立 CustomerConversionGoals,確保使用的每個 categoryorigin 組合都有對應的 CustomerConversionGoal

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

新增類別和來源組合

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

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

category origin
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 使用者介面中顯示的轉換動作一致,請使用以下查詢:

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 UI 中顯示為「其他」。 方法是將 category 設為 DEFAULT