Re: reporting within MCC account via API v201008

2011-02-09 Thread AdWords API Advisor
Hi Daniel, Python isn't my personal favourite language, but here's a code example that I put together in C# using the AdWords API .NET library. You should be able to figure out the equivalent python code from the code snippet below: // Get the service. ReportService service = (ReportService)

Re: reporting within MCC account via API v201008

2011-02-08 Thread daniel
Our Google account rep's tech contact also recommends avoiding cross- client reports and instead running once per account contained within the MCC umbrella. I'm currently requiring the human to download a report via the UI to fetch a list of accounts, from which I generate a configuration file. Fo

Re: reporting within MCC account via API v201008

2011-02-04 Thread daniel
Thanks for the sample code. Unfortunately, the example Python code crashes well before that point due to the 'entries' field not being present following the call to GetCampaignService(), regardless of supplying IDs to the selector or not, modifying the early part of the example based upon what I'v

Re: reporting within MCC account via API v201008

2011-02-03 Thread AdWords API Advisor
Hi Daniel, We don't have a LISP library, all the libraries that we maintain are listed at http://code.google.com/apis/adwords/docs/clientlibraries.html and kept upto date with the latest version of AdWords API. So you can use the Python library if that suits you. As for your issue, - CampaignSer

Re: reporting within MCC account via API v201008

2011-02-03 Thread daniel
Unfortunately, v13 seems unable to get a list of Campaign IDs... or at least the example Python code associated with that version seems incapable. Running schedule_campaign_report.py fails because no 'entries' are found after the call to GetCampaignService(). Attempting to populate the list of ca

Re: reporting within MCC account via API v201008

2011-02-02 Thread AdWords API Advisor
Hi Daniel, AdWords API v201008 does not support cross client reports, so you cannot use it yet to get campaign budgets across all accounts. The support for this will be added in a future version of AdWords API. Till then, you might want to consider using the v13 cross-client reports. Cheers, Anas

reporting within MCC account via API v201008

2011-02-02 Thread daniel
I'm attempting to: 1. define a Campaign Performance report 2. download report 3. process locally 4. revise budgets But stuck on running the second step. First of all, is downloading a report an appropriate way to fetch campaign budgets across all accounts? (This works from the UI, and th