Hi, I can see that in v19 All feed-related entities are removed from the API. https://developers.google.com/google-ads/api/docs/upgrade#v18-v19
I have hard time to map old Extensions then feed-items to now Assets. My Goal is to get count across account/campaign/adgroups for extensions/feeds/assets like of Sitelinks Call Call Out Structured Snippets. Earlier I have this feed_item view GAQL. SELECT campaign.id, campaign.name, segments.placeholder_type, campaign.status, ad_group.status FROM feed_item WHERE segments.date >= '2025-06-11' AND segments.date <='2025-07-11' AND metrics.impressions > 0 AND campaign.status IN (ENABLED,PAUSED) AND ad_group.status IN (ENABLED,PAUSED) Now I need to get similar result in v19 of the API. Which is best view report to achieve this query. I was trying to use asset_field_type_view report, Doe sthis correct way to do this? SELECT campaign.id, campaign.name, campaign.status, ad_group.status,asset_field_type_view.field_type, asset_field_type_view.resource_name FROM asset_field_type_view WHERE segments.date >= '2025-06-11' AND segments.date <='2025-07-11' AND metrics.impressions > 0 AND campaign.status IN (ENABLED,PAUSED) AND ad_group.status IN (ENABLED,PAUSED) If you have any guide to map those old reports with new reports type with Asset would be helpful. Or If you can guide which report types are best suited for this? Thanks, -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/adwords-api/731af686-5caa-4e09-b56c-863c17404df0n%40googlegroups.com.
