Hi Nirmita, I appreciate the response, but no ... that's not what I'm looking for.
ad.responsive_display_ad.logo_images.asset ,
ad.responsive_display_ad.headlinesare
resource fields that give me information about how the resource has been configured. Useful, but I am trying to get metrics about how those particular assets are performing. As I showed in the previous sample query, when you query ad_group_ad.ad.responsive_display_ad, the metrics are not broken down by the individual assets of the responsive ad.
The functionality may not exist, as I can't find it in the user interface either. But, at the very least, it would be nice to be able to obtain the performance labels that are shown in the "Combinations" tab of the UI:
From the documentation, it seems that we could get this information from the
ad_group_ad_asset_view resource. That includes the
performance_label (as well as the
impression and
click metrics that I am seeking). However, when I query this view I get no results. For example:
SELECT
ad_group_ad_asset_view.ad_group_ad,
ad_group_ad_asset_view.asset,
ad_group_ad_asset_view.field_type,
ad_group_ad_asset_view.performance_label,
metrics.impressions,
metrics.clicks
FROM ad_group_ad_asset_view
Note that I do get some results when querying an App Campaign rather than a Responsive Display Ad. These results look like this:
{
"metrics": {
"impressions": {
"value": 24
}
},
"ad_group_ad_asset_view": {
"resource_name": "customers/9876543210/adGroupAdAssetViews/1234567890~2345678901~13772936712~DESCRIPTION",
"field_type": "DESCRIPTION",
"performance_label": "PENDING",
"ad_group_ad": {
"value": "customers/9876543210/adGroupAds/1234567890~2345678901"
},
"asset": {
"value": "customers/9876543210/assets/13772936712"
}
}
}
So again, I have to ask whether ad_group_ad_asset_view is supported for Responsive Display Ads, or any ad type other than App Campaigns?
thanks,
mcb