Re: Blank campaign performance report

2014-10-24 Thread Josh Radcliff (AdWords API Team)
Hi, Currently there's no way to run a report for multiple clients in a *single* request. What most users do is use ManagedCustomerService to get the hierarchy of client IDs under an MCC, then submit a sep

Re: Blank campaign performance report

2014-10-24 Thread IMM Boulder
I got it. I wasn't drilling down deep enough. we have a parent client id with sub client ids with sub-sub client ids. Is there no way to run a report across all sub-sub client ids by using a sub client id? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and G

Re: Blank campaign performance report

2014-10-24 Thread IMM Boulder
string(61) "https://adwords.google.com/api/adwords/reportdownload/v201409"; array(3) { ["Authorization"]=> string(90) "Bearer [removed]" ["developerToken"]=> string(22) "[removed]" ["clientCustomerId"]=> string(12) "[removed]" } array(1) { ["__rdxml"]=> string(622) "

Re: Blank campaign performance report

2014-10-24 Thread Josh Radcliff (AdWords API Team)
Hi, Ah, I think I know the issue then. You cannot run cross-account reports -- you need to run a report for each account in your MCC separately. On each report run, set the clientCustomerId header to the AdWords acc

Re: Blank campaign performance report

2014-10-23 Thread IMM Boulder
Thank you for the reply and yes, I saw that, and have that: $reportDefinition->includeZeroImpressions = true; Plus, we have several thousand impressions per day so I'm sure this is not the case. I'm wondering though, since we have several accounts in MCC, is there something special that I need

Re: Blank campaign performance report

2014-10-23 Thread IMM Boulder
Yes, I saw that and have that: $reportDefinition->includeZeroImpressions = true; Plus, we have several thousand impressions per day so I'm sure this is not the case. I'm wondering though, since we have several accounts in MCC, is there something special that I need to do to run a report on any

Re: Blank campaign performance report

2014-10-23 Thread Josh Radcliff (AdWords API Team)
Hi, If you do not have any impressions (no ads served) for those campaigns and for the date range of your report, then you'll want to explicitly request zero impression rows. In the PHP library you would do this by setting *includeZeroImpressions* to *TRUE* on your *ReportDefinition*, as mentio

Blank campaign performance report

2014-10-23 Thread IMM Boulder
This is my first time working with the adwords api so I assume that I am missing something that I am not finding in any of the documentation that I have found. I am using the googleads php library from github to submit my request to the api and it seems to be working fine with the exception tha