Re: Criteria Performance Report

2022-02-22 Thread Akash Prajapati
Hi Team, I understand your point of view and I am following your suggestions only if you look at the above discussion. Thus I am asking that can you help me to *map the below criteria_type to a view*, I am not able to map these I tried but couldn’t map. For example - I mapped the following crite

Re: Result from Query

2022-02-07 Thread Akash Prajapati
hi team can you please provide any update On Tuesday, February 8, 2022 at 8:07:38 AM UTC+5:30 Akash Prajapati wrote: > Hi Team, > > There is no error for which I can provide you the logs, I am asking that > why is it happening when we print(row) the columns are missing even when &

Re: Result from Query

2022-02-07 Thread Akash Prajapati
Tuesday, February 8, 2022 at 8:05:21 AM UTC+5:30 Akash Prajapati wrote: > Hi Team > Is this behaviour expected from the api ? > > > > On Tuesday, February 8, 2022 at 8:02:33 AM UTC+5:30 adsapi wrote: > >> Hi Akash, >> >> Thank you for reaching out to our API s

Re: Result from Query

2022-02-07 Thread Akash Prajapati
Hi Team Is this behaviour expected from the api ? On Tuesday, February 8, 2022 at 8:02:33 AM UTC+5:30 adsapi wrote: > Hi Akash, > > Thank you for reaching out to our API support team. > > So that our team may take a closer look at the issue you encountered, > could you also provide to our team

Result from Query

2022-02-07 Thread Akash Prajapati
Hi Team When I am printing in the below manner - *"try:for batch in stream:* * for row in batch.results: print(row)* I am missing some of the columns in my output for example like below even when I have selected them in the main Query. metri

Re: Report Download in ADS api

2022-01-30 Thread Akash Prajapati
Hello Team, Can you please provide any Information? On Sunday, January 30, 2022 at 10:54:06 PM UTC+5:30 Akash Prajapati wrote: > Hi Team, > > 1. Is there any service in Google ads api that I can use to download the > reports? > 2. If I have to download multiple reports from goog

Report Download in ADS api

2022-01-30 Thread Akash Prajapati
Hi Team, 1. Is there any service in Google ads api that I can use to download the reports? 2. If I have to download multiple reports from google ads and each report/resource contains a lot of columns(30+) it's not feasible to write - *"*try: for batch in stream: for row in

Re: Criteria Performance Report

2022-01-26 Thread Akash Prajapati
Hi As we know that Criteria Performance Report is deprecated in ADS api, so if my criteria_type in adwords criteria performance report has many criteria for example - YouTube Video Keyword Gender Placement. So if i want to fetch specific criteria I wish to track its performance in ads api I sh

Criteria Performance Report

2022-01-24 Thread Akash Prajapati
How to check/verify what is the criteria of our criteria Performance report in Adwords ? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because

Not able to Download Reports(Resources) in CSV from GAds using GAQL

2021-12-09 Thread Akash Prajapati
Hello, In Adwords documentation we have *client.GetReportDownloader.* which basically helps us to download report, but how to perform the same in Google ads ? How to download a report in google ads because now *reports are changed to resources* and we have *GAQL* instead of *selectors* kindly

Re: How to Download a report in google ads

2021-12-08 Thread Akash Prajapati
Kindly can you please provide any update . thanks On Wednesday, December 8, 2021 at 7:25:11 PM UTC+5:30 Akash Prajapati wrote: > Hello, > > In Adwords documentation we have *client.GetReportDownloader.* which > basically helps us to download report, but how to perform the same in

How to Download a report in google ads

2021-12-08 Thread Akash Prajapati
Hello, In Adwords documentation we have *client.GetReportDownloader.* which basically helps us to download report, but how to perform the same in Google ads ? How to download a report in google ads because now *reports are changed to resources* and we have *GAQL* instead of *selectors* kindly

Re: HOW TO INCLUDE ZERO IMPRESSIONS ??

2021-11-23 Thread Akash Prajapati
query only for REMOVED i get empty data campaign.status IN (ENABLED, PAUSED, REMOVED) On Tuesday, November 23, 2021 at 4:51:29 PM UTC+5:30 Akash Prajapati wrote: > Kindly can you guide on how to include zero impressions ? > Does the zero impressions depend on the other metrics mentioned

HOW TO INCLUDE ZERO IMPRESSIONS ??

2021-11-23 Thread Akash Prajapati
Kindly can you guide on how to include zero impressions ? Does the zero impressions depend on the other metrics mentioned in the Query as well ? I am currently using this in my query to include zero impressions as well metrics.impressions >= 0, is this correct ? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=

Re: GETING NUMERICAL VALUES INSTEAD OF NAME OF ENUMS

2021-11-23 Thread Akash Prajapati
I have mailed you, kindly check On Tuesday, November 23, 2021 at 2:38:38 PM UTC+5:30 adsapi wrote: > Hi Akash, > > Thank you for raising your concern to our team. > > To take a closer to the issue, could you provide the complete request >

Re: Need all rows and not aggregated data.

2021-11-23 Thread Akash Prajapati
Can you please provide any update on the same. thanks On Tuesday, November 23, 2021 at 11:00:37 AM UTC+5:30 Akash Prajapati wrote: > Hello Team, > > 1. The modified query still we get aggregated results. - > query = """ > SELECT > campaign.id, &

GETING NUMERICAL VALUES INSTEAD OF NAME OF ENUMS

2021-11-22 Thread Akash Prajapati
Hello Team, For the below query when I run it, in my result set I am getting 2,4,6 values in campaign.status column instead I should get ENABLED,PAUSED,REMOVED. Kindly guide me on the same. SELECT campaign.id, campaign.status, campaign.name, segments.date, metrics.impressions FROM campaign WHERE

Re: Need all rows and not aggregated data.

2021-11-22 Thread Akash Prajapati
Hello Team, 1. The modified query still we get aggregated results. - query = """ SELECT campaign.id, campaign.status, campaign.name, segments.date, segments.ad_network_type, metrics.impressions FROM campaign WHERE segments.date = '2021-11-13' and metrics.impressions >= 0 and campaign.status IN (

Re: Need all rows and not aggregated data.

2021-11-22 Thread Akash Prajapati
Hello Team, Thanks for the quick response! 1. The issue is when we are querying the Campaign_Performance _Report to fetch the data we are not getting all the total distinct rows, instead, we are getting aggregated data for each campaign_id. Suppose the total rows for a particular date 2021-11-