Re: Getting AdGroup Performance report for Custom Date - Adwords API using Python

2017-07-05 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Tushar, I was able to download a report using the above code snippet. I would suggest that you post your question on the Python client library's issue tracker so the library owners can help you out. Regards, Shwetha, AdWords API T

Re: Getting AdGroup Performance report for Custom Date - Adwords API using Python

2017-07-04 Thread Tushar Bhasin
Here is the complete code, please let me know about the problem? def update_click_performance_report(account_name, client): report_downloader = client.GetReportDownloader(version='v201609') # Create report definition. report = { 'reportName': 'CLICK_PERFORMANCE_REPORT',

Re: Getting AdGroup Performance report for Custom Date - Adwords API using Python

2017-06-29 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Tushar, I was not able to find any errors in the report definition. Since this is a syntax error and not an API error, please send me the complete code so I can take a look. Thanks, Shwetha, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blo

Re: Getting AdGroup Performance report for Custom Date - Adwords API using Python

2017-06-29 Thread Tushar Bhasin
Hello Shwetha, Thank you for your reply, I am getting data using 'YESTERDAY' & 'TODAY' but not with custom date Here is the definition: report = { 'reportName': 'CLICK_PERFORMANCE_REPORT', 'dateRangeType': 'CUSTOM_DATE', 'reportType': 'CLICK_PERFORMANCE_REPORT',

Re: Getting AdGroup Performance report for Custom Date - Adwords API using Python

2017-06-28 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Tushar, Could you provide the complete report definition so I can take a look? Thanks, Shwetha, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelop

Re: Getting AdGroup Performance report for Custom Date - Adwords API using Python

2017-06-28 Thread Tushar Bhasin
Hello, I get this error: 'dateRange': {'min':'20170625','max':'20170625'} ^ SyntaxError: invalid syntax Can you please explain? On Monday, June 6, 2016 at 4:54:26 PM UTC+2, Umesh Dengale wrote: > > Hello, > > You could use custom date range as - 'dateRange':,{'min':[startD

Re: Getting AdGroup Performance report for Custom Date - Adwords API using Python

2016-06-06 Thread 'Umesh Dengale' via AdWords API Forum
Hello, You could use custom date range as - 'dateRange':,{'min':[startDate], 'max':[endDate]} Refer below example code. Please check out Reporting basics guide for more details. report = { 'reportNa

Getting AdGroup Performance report for Custom Date - Adwords API using Python

2016-06-06 Thread Varun Dhall
Hello, I am using standard python script to retrieve the data from my ad-words accounts. Actually I want to fetch the data for a custom date like between '2016-06-01' to '2016-06-01' (-MM-DD) Its really confusing and unclear how to modify this existing sample script # Create report defin