轉換報表
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
您可以在 Google Ads API 中擷取特定轉換動作的資料,或擷取其他資源 (例如廣告活動、廣告群組和廣告) 的轉換指標,藉此製作轉換報表。本指南說明如何擷取這項資訊,以及 Google Ads 使用者介面指標如何對應至 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 查詢建立工具開始建立自己的查詢。
擷取其他資源的轉換指標
您可以依 conversion_action
區隔,並在查詢其他資源 (例如 keyword_view
和 ad_group
) 時,擷取 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 中對應指標的對應關係。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-13 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-07-13 (世界標準時間)。"],[[["Learn how to retrieve data about specific conversion actions using the `conversion_action` resource to gain insights into their performance."],["Discover how to retrieve conversion metrics, such as `conversions` and `all_conversions`, for various resources like campaigns and ad groups, enabling you to segment and analyze your data effectively."],["Understand the mapping of Google Ads UI metrics to Google Ads API metrics, allowing you to seamlessly translate data between the two platforms."],["Address common concerns, including data freshness, empty reports, and the unavailability of custom columns in the Google Ads API, ensuring a smooth experience."]]],[]]