API Báo cáo Search Ads 360 mới hiện đã ra mắt. Tham gia nhóm Google searchads-api-announcements để luôn được cập nhật về những cải tiến và bản phát hành sắp tới.
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Thuộc tính thành phần
Bạn có thể nhận danh sách thành phần và các thuộc tính của thành phần đó bằng cách gửi cụm từ tìm kiếm bằng Ngôn ngữ truy vấn của Search Ads 360 đến SearchAds360Service.
Các thành phần được biểu thị bằng thực thể asset, trong đó hiển thị một số trường dành riêng cho thành phần.
Truy vấn sau đây liệt kê tất cả thành phần trong tài khoản của một nhà quảng cáo cùng với tên và loại tài nguyên của các thành phần đó.
SELECT
asset.id,
asset.name,
asset.resource_name,
asset.type
FROM asset
Xin lưu ý rằng có một số thuộc tính dành riêng cho loại mà bạn có thể thêm vào truy vấn trên để đọc các thuộc tính dành riêng cho thành phần, chẳng hạn như SitelinkAsset hoặc MobileAppAsset.
Ví dụ: truy vấn sau đây liệt kê mã ứng dụng di động cho tất cả đối tượng MobileAppAsset trong một tài khoản bằng cách lọc giá trị asset.type cho MobileAppAsset.
SELECT
asset.id,
asset.name,
asset.resource_name,
asset.mobile_app_asset.app_store
FROM asset
WHERE asset.type = 'MOBILE_APP'
Chỉ số về thành phần
Bạn có thể xem các chỉ số về thành phần thông qua một số tài nguyên:
Với các tài nguyên này, bạn có thể truy vấn các chỉ số thành phần ở từng cấp tương ứng.
Ví dụ: khi truy vấn tài nguyên ad_group_asset, bạn có thể sử dụng trường ad_group.id để phân đoạn kết quả, từ đó truy xuất các chỉ số cho từng tổ hợp duy nhất của ad_group và asset:
SELECT
ad_group.id,
asset.id,
metrics.clicks,
metrics.impressions
FROM ad_group_asset
WHERE segments.date DURING LAST_MONTH
ORDER BY metrics.impressions DESC
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2024-11-23 UTC."],[[["Retrieve a list of assets and their attributes, including resource name and type, using Search Ads 360 Query Language."],["Access type-specific attributes, such as mobile app IDs, by filtering the `asset.type` value in your query."],["Query asset metrics at the ad group, campaign, or customer level through respective resources like `ad_group_asset`, `campaign_asset`, and `customer_asset`."],["Segment asset metric results by fields like `ad_group.id` to analyze performance for specific combinations of assets and ad groups, campaigns, or customers."]]],["Assets and their attributes can be retrieved by sending a Search Ads 360 Query Language query to the SearchAds360Service, using the `asset` entity. Type-specific attributes can be added to queries. Asset metrics are available through `ad_group_asset`, `campaign_asset`, and `customer_asset` resources, enabling queries at various levels. For example, metrics can be retrieved for each unique combination of `ad_group` and `asset` using `ad_group_asset` resource.\n"]]