Hello, The Campaign Performance report <https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report#top_of_page> includes statistics aggregated at campaign level with one row per campaign. If you're using any segment fields <https://developers.google.com/adwords/api/docs/guides/reporting#segmentation>, in this case *AdNetworkType1 <https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report#adnetworktype1>, *the data in the report is split into various segments, one for each network type.
If you're looking to pull metrics for a specific network type, you could use the WHERE clause as below: String query = "SELECT CampaignId, CampaignName, CampaignStatus, StartDate, EndDate, AverageFrequency, ImpressionReach, SearchImpressionShare, SearchRankLostImpressionShare, SearchBudgetLostImpressionShare, VideoQuartile25Rate, VideoQuartile50Rate, VideoQuartile75Rate, VideoQuartile100Rate, AdNetworkType1 FROM CAMPAIGN_PERFORMANCE_REPORT WHERE CampaignId = 598878691 AND AdNetworkType1 IN [CONTENT] DURING 20170101, 20171204" The enum value Content is used for the Display network type. Can you try with this query and let me know if you have any other questions. Regards, Bharani, AdWords API Team On Monday, December 4, 2017 at 6:31:36 AM UTC-5, Spain Api wrote: > > Hi all! > > I'm trying download a specific campaign (id: 598878691) with date range > "01/01/2017 - 04/12/2017", but the report return zero rows. > > However, i can see the data in campaign management from google adwords and > I can too download your data in AD_PERFORMANCE_REPORT. > > I'm using v201710 api version, and my query is: > > select CampaignId, CampaignName, CampaignStatus, StartDate, EndDate, > AverageFrequency, ImpressionReach, SearchImpressionShare, > SearchRankLostImpressionShare, SearchBudgetLostImpressionShare, > VideoQuartile25Rate, VideoQuartile50Rate, VideoQuartile75Rate, > VideoQuartile100Rate, AdNetworkType1 from CAMPAIGN_PERFORMANCE_REPORT where > CampaignId = 598878691 during 20170101, 20171204 > > Can someone help me, please? > > Thanks. > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords 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 "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/9be870e1-bd0f-416a-bc3a-039b104eae53%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
