Hello,
I have a report that emails me a list of disapproved extensions within an account.
When I run this query on a particular account:
SELECT
feed_item.status,
feed_item.attribute_values,
feed_item.policy_infos,
feed_item.id FROM feed_item
WHERE
feed_item.status = 'ENABLED'
It returns an old review extension that has been disapproved.
I cannot do anything with this information, since review extensions are no longer an option in Google Ads.
How can I modify this query so that it will never return extensions that can no longer be used in Google Ads?
I would have thought feed_item.status = 'ENABLED' would have accomplished this, but this old review extension is, in fact, listed as enabled.
Thanks and I look forward to your reply.
Aaron