Hi Anash,

Thank you for the response, I have over 1100 customer Ids to loop through 
and it is only growing. Short of doing these requests in parallel and 
dealing with the request limitations, it would be much simpler to make one 
call to get the summary data across the campaigns.

Will there be a way to download a previously defined custom report from the 
interface? (since the interface already handles this global summary 
scenario)

The only reason I chose to use the reporting api over the daily email is 
because the email sends a link to a page that uses javascript to 
asynchronously start downloading the report instead of emailing the end 
result csv file or zip file. A solution on such a process is not very 
appealing.

I appreciate the time!

-Bayron

On Tuesday, April 22, 2014 10:52:26 AM UTC-4, Anash P. Oommen (AdWords API 
Team) wrote:
>
> Hi Bayron,
>
> We don't have any plans to add support for MCC level report / stats. You 
> can use ManagedCustomerService.get to get all the accounts in the 
> hierarchy, run reports in parallel, and aggregate the results at your end. 
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Monday, April 21, 2014 5:45:59 PM UTC-4, Bayron Galdames wrote:
>>
>> Is this going to be fixed?
>>
>> I have hundreds of accounts to manage, it doesn't make sense to brute 
>> force data aggregation...
>>
>> This used to be a feature in one of the older api versions.
>>
>> It also doesn't make sense that, I can quickly generate a report for all 
>> of my accounts using the reporting interface when I log into my account but 
>> have to wait over an hour, gathering customer ids, then requesting the same 
>> report for each customer id...
>>
>> Bing allows us to get all the account stats and I'm hoping this feature 
>> gets added back to the google adwords api.
>>
>> A process that takes less than 30 seconds with Bing takes over an hour 
>> with Google due to this limitation.
>>
>> I hope this message finds you well, 
>>
>> Best Regards!
>>
>> On Tuesday, January 28, 2014 3:35:38 PM UTC-5, Mike C wrote:
>>>
>>> Thanks for the response Anash.  I came across that last night but was 
>>> really hoping there was a simpler way.
>>>
>>> Constructive criticism for the API...
>>>
>>> I use the Bing Ads API a lot as well and while the Adwords API does a 
>>> lot of things better than them (especially documentation), this is one 
>>> place they have a better process.  You can query stats for all accounts (at 
>>> an account level) that the account you are authenticated for has access to 
>>> and the results are dumped into one report.  It really is a lot simpler and 
>>> faster.  Any plans for something like this in the future?
>>>
>>> On a similar note, while I got the code working from the link you sent, 
>>> it won't take 'ACCOUNT_PERFORMANCE_REPORT' as a report type when building 
>>> the report definition.  It throws a 'INVALID_FIELD_NAME_FOR_REPORT' error. 
>>>  Can you not pull account performance reports this way?  Currently I'm 
>>> pulling them at the campaign level and combining the values but I'd prefer 
>>> to just grab the stats I need (which is at the account level).
>>>
>>> Thanks!
>>>
>>> On Tuesday, January 28, 2014 10:01:20 AM UTC-8, Anash P. Oommen (AdWords 
>>> API Team) wrote:
>>>>
>>>> Hi Mike,
>>>>
>>>>
>>>> https://github.com/googleads/google-api-ads-ruby/blob/master/adwords_api/examples/v201309/reporting/parallel_report_download.rbis
>>>>  a good code example to get started on how to download reports for 
>>>> multiple client accounts under an MCC account.
>>>>
>>>> Cheers,
>>>> Anash P. Oommen,
>>>> AdWords API Advisor.
>>>>
>>>> On Monday, January 27, 2014 7:06:36 PM UTC-5, Mike C wrote:
>>>>>
>>>>> Hi Ray,
>>>>>
>>>>> I'm having trouble figuring out how to implement your response.  I am 
>>>>> able to run a report and get the stats when I utilize a customer ID that 
>>>>> has one account.  I can get all the stats for that account.
>>>>>
>>>>> However, I do not understand how I am supposed to get that same report 
>>>>> response for multiple accounts.  For example, the report I can get has 
>>>>> one 
>>>>> row that gives me all my info for that account (Clicks, Impressions, 
>>>>> Conversions, etc.).
>>>>>
>>>>> How do I run that same ACCOUNT_PERFORMANCE_REPORT so that it will 
>>>>> return multiple rows with Clicks, Impressions, Stats, etc. for more than 
>>>>> one account?
>>>>>
>>>>> Please advise.  (It would be great if there was an example somewhere I 
>>>>> could take a look at)
>>>>>
>>>>> Thanks!
>>>>>
>>>>> Mike
>>>>>
>>>>> On Monday, January 13, 2014 12:31:26 PM UTC-8, Ray Tsang (AdWords API 
>>>>> Team) wrote:
>>>>>>
>>>>>> Mike,
>>>>>>
>>>>>> There is a way to retrieve stats for all accounts within an MCC.  You 
>>>>>> will need to iterate over all of the descendant accounts of the MCC, and 
>>>>>> for each of those account, get the stats from reporting.
>>>>>>
>>>>>> You can continue to use OAuth 2.0 as the MCC account user.  For 
>>>>>> example:
>>>>>> 1. Use the 
>>>>>> ManageCustomerService<https://developers.google.com/adwords/api/docs/reference/v201309/ManagedCustomerService>
>>>>>>  to 
>>>>>> get a list of accounts (and the customer ID) managed by the MCC
>>>>>> 2. For each account, query for the 
>>>>>> stats<https://developers.google.com/adwords/api/docs/guides/reporting>that
>>>>>>  you need to aggregate by specifying the Client Customer ID (without 
>>>>>> the dashes).
>>>>>>
>>>>>> Cheers,
>>>>>>
>>>>>> --
>>>>>> Ray Tsang (AdWords API Advisor)
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Tuesday, January 7, 2014 4:05:39 PM UTC-5, Mike C wrote:
>>>>>>>
>>>>>>> Hi Adwords Team,
>>>>>>>
>>>>>>> I've followed the adwords_on_rails demo to create a rails app with a 
>>>>>>> dashboard view that shows an account's stats (clicks, impressions, 
>>>>>>> conversions, etc.), just like an adwords dashboard.
>>>>>>>
>>>>>>> When a user logs in they authenticate through OAuth and land on a 
>>>>>>> selection screen where they select an account ID through a generated 
>>>>>>> list 
>>>>>>> or input one manually (per your setup in adwords_on_rails).  It all 
>>>>>>> works 
>>>>>>> perfectly.
>>>>>>>
>>>>>>> However, is there a way that I can see an overview with stats for 
>>>>>>> all the accounts within an MCC?   Just like when I sign into adwords 
>>>>>>> with 
>>>>>>> the main MCC account credentials, I see a dash with all my clients 
>>>>>>> accounts 
>>>>>>> and their associated stats (all impressions, clicks etc. for client 1, 
>>>>>>> client 2, etc.).
>>>>>>>
>>>>>>> How would I set it up so that I could see that view within the app? 
>>>>>>>  When I OAuth in as the MCC account, I see a list of all the clients 
>>>>>>> and 
>>>>>>> can click on their id set the account id and go into their individual 
>>>>>>> dash. 
>>>>>>>  Even though the MCC's account ID is clickable, if I use it, the dash 
>>>>>>> returns no data.
>>>>>>>
>>>>>>> This is important so that we can have agency views as well as 
>>>>>>> franchises that have multiple accounts that want a main dash to see all 
>>>>>>> their individual account stats.
>>>>>>>
>>>>>>> Any help would be greatly appreciated!
>>>>>>>
>>>>>>> Thanks in advance!
>>>>>>>
>>>>>>> Mike
>>>>>>>
>>>>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to