I am trying to download this info via API from an account but there is not a field related to policy details whereas it is in the platform.
The query I am using in Python is this one:
ga_service = GoogleAdsClient.get_service('GoogleAdsService', version='v3')
query = (
'SELECT extension_feed_item.id, '
'extension_feed_item.extension_type, '
'extension_feed_item.status, '
'extension_feed_item.targeted_geo_target_constant, '
'extension_feed_item.targeted_keyword.match_type, '
'extension_feed_item.sitelink_feed_item.line1, '
'extension_feed_item.sitelink_feed_item.line2, '
'extension_feed_item.sitelink_feed_item.link_text, '
'extension_feed_item.sitelink_feed_item.final_urls, '
'extension_feed_item.callout_feed_item.callout_text, '
'extension_feed_item.structured_snippet_feed_item.header, '
'extension_feed_item.structured_snippet_feed_item.values '
'FROM extension_feed_item')
results = ga_service.search(str(accountId), query=query)
Is there a way to get policy details value for a given extension, maybe with another query to another resource comparing the extension_feed_item's id?