Để thảo luận và đưa ra ý kiến phản hồi về các sản phẩm của chúng tôi, hãy tham gia kênh Discord chính thức của Google Ads trong máy chủ Cộng đồng quảng cáo và đo lường của Google.
Bạn có thể dùng tài nguyên asset_group_top_combination_view để truy vấn những tổ hợp thành phần hoạt động hiệu quả nhất trong nhóm thành phần. Chỉ số này tương ứng với Báo cáo kiểu kết hợp trong giao diện người dùng Google Ads. Ví dụ: truy vấn sau đây tạo ra danh sách các tổ hợp tài sản hàng đầu trong một asset_group được chỉ định. Mỗi hàng trong phản hồi chứa một danh sách các thông báo asset_group_top_combination_view.asset_group_top_combinations thuộc loại AssetGroupAssetCombinationData.
Mỗi mục trong danh sách đó chứa danh sách các tài sản trong tổ hợp tương ứng được biểu thị dưới dạng thông báo AssetUsage.
Bạn có thể điều chỉnh truy vấn này để hỗ trợ việc chọn thành phần và tối ưu hoá chiến dịch.
Truy vấn sau đây truy xuất kiểu kết hợp thành phần hàng đầu cho một chiến dịch duy nhất, nhưng chỉ dành cho những nhóm thành phần có asset_group.ad_strength là GOOD hoặc EXCELLENT. Điều này giúp bạn xác định những kiểu kết hợp thành phần hiệu quả nhất trong các nhóm thành phần hiệu quả nhất.
[null,null,["Cập nhật lần gần đây nhất: 2025-08-27 UTC."],[],[],null,["# Asset Performance\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\nIt's possible to obtain asset level performance by using the\n[`asset_group_asset`](/google-ads/api/fields/v21/asset_group_asset) resource.\n\nAsset performance with `asset_group_asset`\n------------------------------------------\n\nOn the [`asset_group_asset`](/google-ads/api/fields/v21/asset_group_asset) resource, the\n[`performance_label`](/google-ads/api/fields/v21/asset_group_asset#asset_group_asset.performance_label)\nfield ranks the asset against other assets of the same type. For more details,\nsee [About asset reporting in Performance\nMax](//support.google.com/google-ads/answer/10725056). \n\n SELECT\n asset_group_asset.asset,\n asset_group_asset.performance_label,\n asset_group_asset.status\n FROM asset_group_asset\n WHERE asset_group.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eASSET_GROUP_ID\u003c/span\u003e\u003c/var\u003e\n AND asset_group_asset.status != 'REMOVED'\n\nTop asset combinations\n----------------------\n\nThe\n[`asset_group_top_combination_view`](/google-ads/api/fields/v21/asset_group_top_combination_view)\nresource can be used to query the top performing combinations of assets in asset\ngroups. This corresponds to the [Combinations\nreport](//support.google.com/google-ads/answer/10725056#combinations) in the\nGoogle Ads UI. For example, the following query produces a list of the top asset\ncombinations in a specified `asset_group`. Each row in the response contains a\nlist of `asset_group_top_combination_view.asset_group_top_combinations` messages\nof type\n[`AssetGroupAssetCombinationData`](/google-ads/api/reference/rpc/v21/AssetGroupAssetCombinationData).\nEach item in that list contains a list of the assets in the respective\ncombination represented as an [`AssetUsage`](/google-ads/api/reference/rpc/v21/AssetUsage) message. \n\n SELECT asset_group_top_combination_view.asset_group_top_combinations\n FROM asset_group_top_combination_view\n WHERE asset_group.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eASSET_GROUP_ID\u003c/span\u003e\u003c/var\u003e\n\nYou can adapt this query to help with asset selection and campaign optimization.\nThe following query retrieves the top asset combination for a single campaign,\nbut only for asset groups with an\n[`asset_group.ad_strength`](/google-ads/api/fields/v21/asset_group#asset_group.ad_strength) of\n`GOOD` or `EXCELLENT`. This helps you identify the best-performing asset\ncombinations within your top-performing asset groups.\n**Note:** this report is automatically segmented by asset group. `asset_group.id` is included in the `SELECT` clause for asset group identification purposes. \n\n SELECT\n asset_group_top_combination_view.asset_group_top_combinations,\n asset_group.ad_strength,\n asset_group.id\n FROM asset_group_top_combination_view\n WHERE asset_group.ad_strength IN ('GOOD', 'EXCELLENT')\n AND campaign.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eCAMPAIGN_ID\u003c/span\u003e\u003c/var\u003e"]]