You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Which report do I need to use in order to download the Price Extensions information?
I have tried the Placeholder Item Feed Report but cannot seem to get it to work, Which fields will I need to download?
Thanks
Sreelakshmi Sasidharan (AdWords API Team)
unread,
Nov 15, 2017, 5:35:07 PM11/15/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hi,
To get the stats of your price extensions, you can use Placeholder Feed Item Report and include a condition to filter the PlaceholderType field. A PlaceholderType value of 35 indicates that the feed item is a price extension. The available fields in this report can be found here. You can refer to DownloadCriteriaReportWithAwql for a code sample in Java for reporting. You will need to modify the code to download Placeholder Feed Item Report. Samples in other languages can also be found here.
Below is a sample AWQL that you can use for Placeholder Feed Item Report: SELECT FeedId, FeedItemId, AttributeValues, PlaceholderType FROM PLACEHOLDER_FEED_ITEM_REPORT WHERE PlaceholderType in [35]