Hello,
so I have an interesting challenge. I am building a link checker for feed items / extensions. What I want to download through the Reporting API are all feed items that comply with the following conditions:
1) Active feed items
2) Include Zero Impressions = true
3) Are associated (e.g. with ad groups, campaigns)
Currently I can do only combination of 2, not all 3:
1+2) Active feed items + zero impressions:
- I use placeholder feed item report, status=enabled, includeZeroImpressions=true
1+3) Active feed items + are associated
- I use placeholder feed item report, I add AdGroupId and CampaignId columns or predicate AdGroupStatus=enabled and CampaingStatus=enabled
- problem is that those columns do not support include zero impressions so I only see feed items that have a click
So the question is: What report(s) do I need to simply get list of all feed items that are "live"?
Bonus question: How do you recognize in a data from the Reporting API if feed item is associated on account level? (e.g. you can have account level sitelinks, right?)
Thank you in advance for any help.