애셋 속성 및 측정항목 가져오기
저작물 속성
SearchAds360Service에 Search Ads 360 쿼리 언어 쿼리를 전송하여 확장 소재 및 확장 소재의 속성 목록을 가져올 수 있습니다.
애셋은 여러 애셋별 필드를 노출하는 asset
항목으로 표현됩니다.
다음 쿼리는 광고주 계정의 모든 확장 소재를 리소스 이름 및 유형과 함께 표시합니다.
SELECT
asset.id,
asset.name,
asset.resource_name,
asset.type
FROM asset
위 쿼리에 추가하여 애셋과 관련된 속성을 읽을 수 있는 유형별 속성(예: SitelinkAsset
또는 MobileAppAsset
)이 있습니다.
예를 들어 다음 쿼리는 MobileAppAsset
의 asset.type
값을 필터링하여 계정의 모든 MobileAppAsset
객체의 모바일 앱 ID를 나열합니다.
SELECT
asset.id,
asset.name,
asset.resource_name,
asset.mobile_app_asset.app_store
FROM asset
WHERE asset.type = 'MOBILE_APP'
확장 소재 측정항목
애셋 측정항목은 다음과 같은 몇 가지 리소스를 통해 사용할 수 있습니다.
이러한 리소스를 사용하면 각 수준에서 확장 소재 측정항목을 쿼리할 수 있습니다.
예를 들어 ad_group_asset
리소스를 쿼리할 때 ad_group.id
필드를 사용하여 결과를 분류하여 ad_group
및 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
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-11-23(UTC)
[null,null,["최종 업데이트: 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"]]