Re: Ad group label filter for ad performance report

2018-03-21 Thread harish.padmakar via AdWords API Forum
Sorry I did not look at CriterionId.. Thanks a lot Vincent! On Wednesday, 21 March 2018 12:33:26 UTC+5:30, Vincent Racaza (AdWords API Team) wrote: > > Hi, > > I am a teammate of Bharani and will provide support to you as she is OOO. > > Yes, the "Keyword/Placement" segment is available in the ol

Re: Ad group label filter for ad performance report

2018-03-21 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi, I am a teammate of Bharani and will provide support to you as she is OOO. Yes, the "Keyword/Placement" segment is available in the old AdWords UI view for the ads level report. However, for the AdWords API, this segment is currently not supported. You can only segment by CriterionId

Re: Ad group label filter for ad performance report

2018-03-20 Thread harish.padmakar via AdWords API Forum
Thank Bharani, Using AdWords UI I'm able to segment ads by keyword/placement, but I do not see keyword/placement segment in ad performance report. Is there a way to do this using API? Thanks On Thursday, 15 February 2018 22:30:40 UTC+5:30, Bharani Cherukuri (AdWords API Team) wrote: > > Hello

Re: Ad group label filter for ad performance report

2018-02-15 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Harish, It is only possible to send the client customer Id at the runtime in the python file. You may refer to this guide on how to do so. On the other hand, it is not possible to pass

Re: Ad group label filter for ad performance report

2018-02-14 Thread harish.padmakar via AdWords API Forum
Hello Bharani, Thanks for all the help! I have a name.py file which is a basic adwords api script to download adgroup performance data. I want to know if there is a way to directly add the information from credentials.yaml in name.py itself instead of using *path *in *adwords.AdWordsClient.Lo

Re: Ad group label filter for ad performance report

2017-12-01 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Harish, Please find my detailed response below: SOAP logs are the actual API request and response log in the XML format. These logs help to troubleshoot the error and fix the issue. You may refer to our troubleshooting guide

Re: Ad group label filter for ad performance report

2017-11-30 Thread harish.padmakar via AdWords API Forum
Please help me with this as well! I am not a very skilled tech person, so I do not know understand what 'SOAP request and response logs' are. Could you please explain it at your convenience? Thanks! *Regarding DURING clause:* How do I download the report for difference date range. Example: Oc

Re: Ad group label filter for ad performance report

2017-11-30 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Harish, You may refer to the Python Where Builder class which lists all the supported predicates for the WHERE clause, when using the ReportQueryBuilder

Re: Ad group label filter for ad performance report

2017-11-30 Thread harish.padmakar via AdWords API Forum
In addition to the above question, I would like to know what OPERATORS can replace 'In' in the below code (highlighted). report_query = (adwords.ReportQueryBuilder() .Select('AdType','AdNetworkType1','AdNetworkType2,''AccountDescriptiveName',) .From('AD_PERFOR

Re: Ad group label filter for ad performance report

2017-11-29 Thread harish.padmakar via AdWords API Forum
Ya Bharani. It worked for me as well. Thanks! I am not a very skilled tech person, so I do not know understand what 'SOAP request and response logs' are. Could you please explain it at your convenience? Thanks! *Regarding DURING clause:* How do I download the report for difference date range. E

Re: Ad group label filter for ad performance report

2017-11-29 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Harish, That's right, you will be able to use this query with another WHERE clause. We were able to test this and download the reports. If you run into any issues with this report query, please provide us the complete SOAP request and response logs, so I can take a look. Please use *Repl

Re: Ad group label filter for ad performance report

2017-11-28 Thread harish.padmakar via AdWords API Forum
Second query as in a separate where clause for another condition? like the below? report_query = (adwords.ReportQueryBuilder() .Select('AdType','AdNetworkType1','AdNetworkType2,''AccountDescriptiveName',) .From('AD_PERFORMANCE_REPORT') .Wher

Re: Ad group label filter for ad performance report

2017-11-27 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Harish, I'm glad that you were able to resolve the script issue. As for your concern, it is recommended to use the second query to pull the Ad Performance metrics. Please refer to our code samples here for more infor

Re: Ad group label filter for ad performance report

2017-11-27 Thread harish.padmakar via AdWords API Forum
Thanks Bharani. I fixed it. I need some help with the below script. I want to know if i can write the where clause from the below script as .Where ('AdType').In('EXPANDED_TEXT_AD') and ('AdNetworkType1').In('SEARCH') report_query = (adwords.ReportQueryBuilder() .Select('AdT

Re: Ad group label filter for ad performance report

2017-11-22 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Harish, Could you provide us the complete error logs and details about the library version used, so I can take a look and assist you further? Regards, Bharani, AdWords API Team On Tuesday, November 14, 2017 at 5:05:21 AM UTC-5, harish@latentview.com wrote: > > Is it possible to apply a

Re: Ad group label filter for ad performance report

2017-11-21 Thread harish.padmakar via AdWords API Forum
I get this error 'UnicodeEncodeError: 'ascii' codec can't encode character u'\xe1' in position 52115: ordinal not in range(128)' when I execute the script with the query from the reference code. On Tuesday, 21 November 2017 23:18:32 UTC+5:30, Bharani Cherukuri (AdWords API Team) wrote: > > Hi

Re: Ad group label filter for ad performance report

2017-11-21 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Harish, Can you try the query from this code sample and see if that works for you? Regards, Bharani, AdWords API Team On Tuesday, November

Re: Ad group label filter for ad performance report

2017-11-20 Thread harish.padmakar via AdWords API Forum
Hi Bharani, The below is the code that I used. Please guide me so that I can download ad report with necessary columns and metrics. import sys from googleads import adwords def main(client): # Initialize appropriate service. report_downloader = client.GetReportDownloader(version='v201710

Re: Ad group label filter for ad performance report

2017-11-16 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Harish, Can you confirm which version of the googleads-python client library are you using. The ReportQueryBuilder change was introduced in v9.0.0. If you're using an earlier version of the library and trying to use the samples fr

Re: Ad group label filter for ad performance report

2017-11-15 Thread harish.padmakar via AdWords API Forum
On running the below code i get this error 'AttributeError: 'module' object has no attribute 'ReportQueryBuilder''. Please do the needful. *Code:* import sys from googleads import adwords def main(client): # Initialize appropriate service. report_downloader = client.GetReportDownloader(versi

Re: Ad group label filter for ad performance report

2017-11-15 Thread harish.padmakar via AdWords API Forum
Oh. We miss having ad group label filter in ad report. I want to know which python file should I use for downloading report. I see the following, download_criteria_report_as_stream_with_awql.py download_criteria_report_as_stream_with_selector.py download_criteria_report_as_string_with_awql.py dow

Re: Ad group label filter for ad performance report

2017-11-15 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Harish, That's right, with the AdGroup Performance Report , you will be able to retrieve statistics aggregated at the Ad group level with one row per ad group. You can take a look at the available R

Re: Ad group label filter for ad performance report

2017-11-14 Thread harish.padmakar via AdWords API Forum
Hello Bharani, Thanks for taking time in writing back to me. If I consider AdGroup Performance Report then I will not get the statistics aggregated at the ad level. I'm new to AdWords API, so it will be very helpful if we can get on a quick call. My Mobile - +91 8939546514. Thanks for your he

Re: Ad group label filter for ad performance report

2017-11-14 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Harish, The AdGroup Label manages the labels associated with an AdGroup. The Ad Performance Report includes all the statistics aggregated at the ad level, one per ad. The list of Labels