Hi,
Thank you for reaching out to the Google Ads Scripts support team.
I would like to inform you that the metrics 'ad_group_ad.ad.discovery_carousel_ad.headline', and 'ad_group_ad.ad.discovery_multi_asset_ad.headlines' are deprecated from “ad_group_ad” in API version 17. In order to resolve this issue, I would suggest that you replace your code from
const results = AdsApp.search(`SELECT ${fields} FROM ad_group_ad ` + `WHERE metrics.impressions > 0 AND ` + `segments.date DURING LAST_7_DAYS`,);
with
const results = AdsApp.search(`SELECT ${fields} FROM ad_group_ad ` + `WHERE metrics.impressions > 0 AND ` + `segments.date DURING LAST_7_DAYS`,{apiVersion: 'v16'});
Alternatively, you can remove both the 'ad_group_ad.ad.discovery_carousel_ad.headline', and 'ad_group_ad.ad.discovery_multi_asset_ad.headlines' fields from the Config object to resolve this error.
I hope this helps! Kindly contact us with the below details if you still face any issues.
![]() |
Google Ads Scripts Team |