Thanks Mitchell, 
I did some more digging and it looks like it was because I was using a 
segment in my query (AssociatedCampaignStatus) it broke it out into 
multiple groups.  I left that out and made the query look as it does below 
and that seemed to solve the issue.  


report_query = (adwords.ReportQueryBuilder()
                      .Select(
                          'Amount',
                          'BudgetId',
                          'BudgetName',
                          'Period',
                          'Clicks',
                          'Impressions',
                          'AverageCpc',
                          'Cost',
                          'Conversions',
                          'CostPerConversion',
                          'ConversionValue'
                              )
                      .From('BUDGET_PERFORMANCE_REPORT')
                      .During('{},{}'.format(from_date.strftime("%Y%m%d"), 
to_date.strftime("%Y%m%d")))
                      .Where('BudgetStatus').EqualTo('ENABLED')
                      .Build())

On Wednesday, July 22, 2020 at 10:08:12 AM UTC-7 adsapiforumadvisor wrote:

> Hi Vallard,
>
> Thank you for reaching out. Can you please share your client customer ID 
> and the campaign ID that's having an issue *via Reply privately to 
> author *so I can further investigate the issue? Also, if you are using a 
> report, please share your report definition 
> <https://developers.google.com/adwords/api/docs/guides/reporting#create_a_report_definition>
>  
> and if you are using a service, please share the complete detailed request 
> and response logs for the call. You can find information on enabling 
> logging here 
> <https://github.com/googleads/googleads-python-lib#how-do-i-log-soap-interactions>
> .
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q22Y8fR:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8bac417f-b914-43f4-b16b-fb3846eab07dn%40googlegroups.com.

Reply via email to