Hey everyone,
We're looking to complete the task of duplicating a responsive search ad through the google API. We're struggling in the copying of the RSAs assets types such as the callouts, images, call number and the other assets that can be associated with a specific ad.
We were able to get some of the stuff from that. Like Sitelinks , tracking_url_template, final_url_suffix, url_custom_parameters from the SearchGoogleAdsRequest service but unable to fetch the rest.
Is there currently a way to do this that we're missing?
Here is the query we are currently using:
SELECT
ad_group.id, ad_group_ad.ad.id,
ad_group_ad.ad.tracking_url_template,
ad_group_ad.ad.app_ad.images,
ad_group_ad.ad.legacy_responsive_display_ad.promo_text,
ad_group_ad.ad.responsive_display_ad.promo_text,
ad_group_ad.ad.responsive_search_ad.headlines, ad_group_ad.ad.responsive_search_ad.path1, ad_group_ad.ad.responsive_search_ad.path2,
ad_group_ad.ad.responsive_search_ad.descriptions, ad_group_ad.ad.final_urls, ad_group_ad.ad.url_custom_parameters,
ad_group_ad.status
FROM ad_group_ad
WHERE ad_group_ad.status != "REMOVED"
Thanks!
|
||||||