Re: Trying to get performance report on individual Display Ads across Placements

2017-08-10 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Garik, You are correct. The Placement Performance Report is based on placements so all fields such as the FinalUrls field of this report will be based on the information on that

Re: Trying to get performance report on individual Display Ads across Placements

2017-08-09 Thread Garik Tate
Hey Vincent, Thank you anyways for all your help. :-) I really appreciate it. You guys on the Adwords support team on this forum are seriously amazing! I might have found a different solution. But it relies on the results found in the "Final Url" column in the Placement Performance Report:

Re: Trying to get performance report on individual Display Ads across Placements

2017-08-08 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Garik, The information regarding your report was passed on by Peter to me, so I have also seen the screenshot you attached in your thread. Based on your screenshot, it seems that you are using a Google Analytics integration in retrieving the report. However, there are only four Google

Re: Trying to get performance report on individual Display Ads across Placements

2017-08-07 Thread Garik Tate
Hey Vincent, I filtered the CriterionType down to just placements (I'm using PHP with selectors). $selector->setPredicates([ new Predicate('CriterionType', PredicateOperator::IN, ['PLACEMENT']) ]); But the reports are showing up blank. I think it's because my campaigns use

Re: Trying to get performance report on individual Display Ads across Placements

2017-08-07 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Garik, It is good to hear that I am able to help. You can do something like this in your query: String query = "SELECT CampaignId, AdGroupId, Description, Headline, CriterionType, " + "Impressions, Clicks, Cost FROM AD_PERFORMANCE_REPORT " + "WHERE *CriterionType =

Re: Trying to get performance report on individual Display Ads across Placements

2017-08-07 Thread Garik Tate
Wow! So long as I can still track performance (things like Impression, Clicks, Cost) I think that might be the solution! :D How do you set the Criterion Type to Placement? Is there any sample code for that? On Monday, August 7, 2017 at 2:36:03 PM UTC+8, Vincent Racaza (AdWords API Team)

Re: Trying to get performance report on individual Display Ads across Placements

2017-08-07 Thread adwordsapiadvisor+vracaza via AdWords API Forum
Hi Garik, The Placement Performance Report will only show the data per campaign and ad group levels as the placement can only be added as criterion in campaigns and ad groups. However, you can use

Trying to get performance report on individual Display Ads across Placements

2017-08-05 Thread Garik Tate
Hey Guys, I'm trying to run a report to see how individual ads are performing across different Placements. Kind of like running a placement performance report with the AdGroupId, but instead of "ad group", I'm trying to get down to the individual "ad" level.