您可以擷取特定轉換動作的資料,或擷取其他資源 (例如廣告活動、廣告群組和廣告) 的轉換指標,以便在 Google Ads API 中記錄轉換。本指南將說明如何擷取這類資訊,以及 Google Ads UI 指標如何對應至 Google Ads API 指標。
擷取特定轉換動作的資料
您可以使用 conversion_action
資源,擷取現有轉換動作的詳細資料。
舉例來說,下列查詢會擷取所有轉換動作的名稱、類型和狀態:
SELECT
conversion_action.resource_name,
conversion_action.name,
conversion_action.type,
conversion_action.status
FROM conversion_action
查看 conversion_action
資源的所有可用欄位,或使用 Google Ads 查詢建立工具來開始建立自己的查詢。
擷取其他資源的轉換指標
您可以在查詢其他資源 (例如 keyword_view
和 ad_group
) 時,依 conversion_action
進行區隔,並擷取 conversions
和 all_conversions
等轉換指標。
舉例來說,下列查詢會擷取廣告活動的 conversions
和 conversions_value
指標,並依 conversion_action
區隔:
SELECT
campaign.name,
segments.conversion_action,
metrics.conversions,
metrics.conversions_value
FROM campaign
請注意,某些轉換相關欄位 (例如 segments.conversion_or_adjustment_lag_bucket
和其他指標欄位) 可能無法在所有報表中使用。有關相容欄位的完整清單,請查看個別資源頁面。
常見問題
- 我的資料不是最新資訊。
- 查看轉換資料時,請注意成效資料並非立即可用。請參閱 Google Ads 資料更新間隔指南,瞭解轉換資料更新間隔。
- 我的報表沒有任何內容。
- 系統不會傳回報表中指標均為零的資料列,例如新的轉換動作。
- 我無法透過 Google Ads API 存取自訂欄。 Google Ads API 不支援
- 自訂欄,因此無法在報表中擷取。
對應使用者介面指標
使用 Google Ads 使用者介面查看廣告活動時,您會看到許多可能的資料欄,這些欄對應 Google Ads API 中的指標。下表概略說明了 UI 中的欄與 API 中對應指標的對應關係。