Re: Migration to Google Ads API - Get list of all accounts under MCC

2019-04-04 Thread Marcel Zemp
The query now runs, but I'm not sure what I'm getting back. According to the documentation for SearchGoogleAdsResponse , I should get a list of results

Re: Migration to Google Ads API - Get list of all accounts under MCC

2019-04-03 Thread Marcel Zemp
Hi Anthony Thanks for getting back. I've tried the CustomerClientService with Python service = client.get_service('CustomerClientService') query = ('SELECT customer_client.resource_name,' 'customer_client.client_customer,' 'customer_client.level,

Migration to Google Ads API - Get list of all accounts under MCC

2019-04-01 Thread Marcel Zemp
Hi We're in the process of migrating from AdWords API to the new Google Ads API. Our Python tool currently loops over all accounts under the MCC root account and downloads various reports for all accounts on a daily basis. >From what I understand, we also have to place calls for each account

Feature Request: New DateRange Types THIS_YEAR & LAST_YEAR

2018-11-09 Thread Marcel Zemp
Hi It would be very convenient to also have THIS_YEAR & LAST_YEAR as valid date range types available. This would be analogue to THIS_MONTH & LAST_MONTH. Thanks for considering! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

Re: CampaignGroup ID scope of uniqueness

2018-04-24 Thread Marcel Zemp
Hi Vincent Thanks for your feedback. What is then the reason why you do not provide the ExternalCustomerId in the Campaign Group Performance Report? Having this field available directly in the report would be much easier and convenient than enriching the data in a post-processing step. In

Re: CampaignGroup ID scope of uniqueness

2018-04-23 Thread Marcel Zemp
Hi Vincent I was thinking about this again. In the Campaign Group Performance Report , the account ID (or ExternalCustomerId in API nomenclature *) is currently not available. I would interpret

Re: Average Position 0.0

2018-03-19 Thread Marcel Zemp
Indeed it looks like an inconsistent handling of the case "not applicable". Excerpt from the AdWords forum thread : "For the Shopping case I agree and this is what I

Re: Average Position 0.0

2018-03-16 Thread Marcel Zemp
Hi all I see this in various types of campaigns: Search, Display and Shopping (Advertising Channel Type). But the main effect I see for Shopping campaigns. If it would not make sense for a certain type (e.g. Shopping) should the API then not rather give back a NULL or "not applicable" value,

Average Position 0.0

2018-03-12 Thread Marcel Zemp
What is the correct interpretation of having an average position of 0.0 even though Impressions > 0? Such records show up in an AD_PERFORMANCE_REPORT in my case. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Re: CampaignGroup ID scope of uniqueness

2018-03-12 Thread Marcel Zemp
Hi Vincent Thanks, this makes things clear. Regards Marcel On Monday, 12 March 2018 10:09:39 UTC+1, Vincent Racaza (AdWords API Team) wrote: > > Hi Marcel, > > I am a teammate of Bharani and will provide support to you as she is OOO. > > Account ID is globally unique (as any AdWords account

Re: CampaignGroup ID scope of uniqueness

2018-03-12 Thread Marcel Zemp
s API Team > > On Monday, March 5, 2018 at 4:20:26 AM UTC-5, Marcel Zemp wrote: >> >> What is the scope of uniqueness of the CampaignGroup ID? Is the scope >> also global, i.e. the CampaignGroup ID is globally unique? >> >> The documentation here >> <h

Re: CampaignGroup ID scope of uniqueness

2018-03-06 Thread Marcel Zemp
Hi Bharani Thanks for your answer. Just to be clear: you say that the (Account ID, CampaignGroup ID) pair is globally unique? It would be good if you guys can update the documentation accordingly. Regards Marcel On Monday, 5 March 2018 19:18:51 UTC+1, Bharani Cherukuri (AdWords API Team)

CampaignGroup ID scope of uniqueness

2018-03-05 Thread Marcel Zemp
What is the scope of uniqueness of the CampaignGroup ID? Is the scope also global, i.e. the CampaignGroup ID is globally unique? The documentation here does unfortunately not specify it. This

Re: Report data from multiple accounts

2017-12-19 Thread Marcel Zemp
Hi Bharani Thanks for your input. Parallel download is certainly useful. But this still leaves me with 1 file per customer_id which I have to join together since I don't wanna deal with dozens or hundreds of files. Other platforms (e.g. DoubleClick) have the functionality to run reports for

Report data from multiple accounts

2017-12-18 Thread Marcel Zemp
Hi Is it still not possible to report data from multiple AdWords accounts at once (i.e with one single API call)? I've seen several older posts where it is recommended to loop over all account/customer IDs and then join the individual reports locally on my machine. Thanks for your input