Re: Batch Jobs stuck on RUNNING state on GoogleAds API

2022-06-19 Thread 'Poojitha Gandra' via Google Ads API and AdWords API Forum
Hi folks, I have been facing the same issue while running *ad_group_ad* Report. The task seems to be getting stuck in running state for several hrs and completes successfully only when rerun. This seems to be happening once in a while and more often from the last week. Is there any other fix th

search_term_view report is running too long

2022-04-07 Thread Poojitha Gandra
-04-07 22:00:06,591 - DEBUG] debug [2022-04-07 22:00:12,940 - DEBUG] debug [2022-04-07 22:00:18,933 - DEBUG] debug [2022-04-07 22:00:25,601 - DEBUG] debug [2022-04-07 22:00:33,533 - DEBUG] debug The terminal is stuck at the above line for the past 40 mins now. Thanks, Poojitha Gandra --

Re: Audience performance Report

2022-03-11 Thread Poojitha Gandra
I meant to say adwords API is sending me rows for all the accounts under my manager account, while google Ads API is sending rows for only 3 accounts mentioned On Friday, March 11, 2022 at 12:13:02 PM UTC-5 Poojitha Gandra wrote: > Hi, > > I am migrating audience performance report fr

Audience performance Report

2022-03-11 Thread Poojitha Gandra
Hi, I am migrating audience performance report from google adwords to google ads API using ad_group_audience_view to retrieve the ad group information as well. Google ads API isnt sending me any rows for all my accounts. Below are the accounts for which i am receiving the data for while adowrds

Re: Google Ads Migration for AUDIENCE_PERFORMANCE_REPORT

2022-03-11 Thread Poojitha Gandra
Hi, I am facing a similar issue with Audience_performance report. While the adwords is sending the data for all the accounts we have , google ads API is only sending the data for 3 accounts. I am using the same date range as you mentioned. please let me know what kind of info you need from my

Re: Not receiving all the columns in the query

2022-03-07 Thread Poojitha Gandra
below is the response for the query: *customer id is 2297774595* *request id is : *5hahIwRH26jj0i8tsCGOaQ d is {'results': [{'customer': {'resource_name': 'customers/2297774595', 'id': '2297774595', 'descriptive_name': 'NerdWallet - Small Business Loans - NW', 'currency_code': 'USD', 'time_zon

Re: Not receiving all the columns in the query

2022-03-07 Thread Poojitha Gandra
Thank you for your response. I am using python API to run these report queries. Could you please elaborate on from where i can get the values you are mentioning? On Mon, Mar 7, 2022 at 5:38 AM Google Ads API Forum Advisor wrote: > Hi Poojitha, > > ​​Thank you for raising this concern to Goo

Not receiving all the columns in the query

2022-03-04 Thread Poojitha Gandra
Hi, I am not receiving the column *campaign.percent_cpc.enhanced_cpc_enabled* while running the below query in google ads API. I am facing the similar issue with other reports as well. *Below is my query for campaign:* select campaign.id,segments.date, campaign.name, customer.descriptive_name

Unable to access all columns in googleadsrows

2022-02-22 Thread Poojitha Gandra
Hi, i am not able to access all the required columns when using *json_format.MessageToJson* *stream = ga_service.search_stream(customer_id=customer_id, query=query)* *for row in stream:json_str = json_format.MessageToJson(row._pb, preserving_proto_field_name=True, including_defa

Re: Convert Google-Ads API GoogleAdsRow object to a dictionary or something useful to end up in a .CSV?

2022-02-21 Thread Poojitha Gandra
Hi, I'm trying to get the googleadsrow into a json or a csv file. The below code doesn't seem to be working. stream = ga_service.search_stream(customer_id=customer_id, query=query) serializable_assets = [proto.Message.to_dict(asset) for asset in stream] df = json_normalize(serializable_assets) d