Re: Filter by campaign type in adwords api reporting python

2019-07-29 Thread Google Ads API Forum Advisor Prod
Hi Praveen, Sorry for the delayed response. I have sent you a private response using the googleadsapi-supp...@google.com alias, let us continue further communication in that thread. Let me know if you did not receive this. Regards, Dannison Google Ads API Team ref:_00D1U1174p._5001U8KkQI:ref

RE: Filter by campaign type in adwords api reporting python

2019-07-18 Thread Google Ads API Forum Advisor Prod
Hi Praveen, Upon checking your report, I would recommend using the Ad Group Performance Report to replicate the report TUI_Display_GDN_Weekly in your Google Ads UI. You may refer to the query below. AWQL : SELECT Date, AdGroupStatus, AdGroupName, CampaignName, CampaignStatus, CpcBid, CpvBid,

RE: Filter by campaign type in adwords api reporting python

2019-07-17 Thread Google Ads API Forum Advisor Prod
Hi Praveen, Even though the the columns in your UI report matches with the fields in your Criteria Performance Report, this may still not return the same report metrics as the Criteria Performance Reports generate metrics on the criteria level. If you wish to retrieve criteria specific

RE: Filter by campaign type in adwords api reporting python

2019-07-17 Thread Google Ads API Forum Advisor Prod
Hi Praveen, Thank you for providing the clientCustomerId privately. Just to clear things out, you are trying to compare the report (TUI_Display_GDN_Weekly) generated in your UI with the Criteria Performance Report you are trying to generate in the API. If this is what you are trying to do, I

RE: Filter by campaign type in adwords api reporting python

2019-07-17 Thread Google Ads API Forum Advisor Prod
Hi Praveen, My apologies for the inconvenience. However, it seems that you are not able to receive my private messages. Forwarding my response below. "My apologies as I would need the requested information so I could further investigate this. Could you provide your clientCustomerId that was

Re: Filter by campaign type in adwords api reporting python

2019-07-17 Thread Praveen Jose
Hi Guys, Any update? On Wednesday, June 19, 2019 at 1:16:45 PM UTC+5:30, Praveen Jose wrote: > > Hi Guys, > > > I am reaching out since I am in need of some guidance here. > > > I am using the python code package to pull a criteria performance report . > However i have a requirement to filter

RE: Filter by campaign type in adwords api reporting python

2019-07-11 Thread Google Ads API Forum Advisor Prod
Hi Praveen, I am a colleague of Sai, allow me to provide support for your concern. To better investigate the issue, could you provide your complete report definition, clientCustomerId used, and the screenshot of the report discrepancies in the UI? You may use the reply privately to author

Re: Filter by campaign type in adwords api reporting python

2019-07-11 Thread Praveen Jose
Hi Sai, Thanks for the details I am able to generate the report now but I am seeing inconsistencies with the data from the UI console and the report that is generated by connecting to the Adwords API Should I provide a specific combination of data for which I am seeing the inconsistencies?

Re: Filter by campaign type in adwords api reporting python

2019-07-08 Thread Google Ads API Forum Advisor Prod
Hello Praveen, Once you got the ids of those display campaigns, you can apply filter on the CampaignId field on the CriterionPerformacneReport by adding the where condition in the report query(example given below). You could use the code sample in JAVA from here.

Re: Filter by campaign type in adwords api reporting python

2019-07-04 Thread Praveen Jose
Hi Sai, I wrote the campaign ids generated into a file for AdvertisingChannelType = "DISPLAY" How do i feed these campaign ids (which are many) into the report structure to pull a criteria performance report? I would need your assistance here Thanks, Praveen On Wednesday, June 26, 2019

RE: Filter by campaign type in adwords api reporting python

2019-06-25 Thread Google Ads API Forum Advisor Prod
Hello Praveen, There are no specific code samples for this scenario but in general to get the reports you can refer this code sample in Python language. To filter and to fetch the campaign Ids for display campaigns you can refer my example query below. Query: SELECT CampaignId FROM

Re: Filter by campaign type in adwords api reporting python

2019-06-25 Thread Praveen Jose
Hi , Thanks for the information. Is there any python code sample which illustrates the options provided? Thanks, Praveen On Wednesday, June 19, 2019 at 1:16:45 PM UTC+5:30, Praveen Jose wrote: > > Hi Guys, > > > I am reaching out since I am in need of some guidance here. > > > I am using

RE: Filter by campaign type in adwords api reporting python

2019-06-24 Thread Google Ads API Forum Advisor Prod
Hello Praveen, Since you have CampaignId field available in the Criteria performance report. You can filter via the AdvertisingChannelType field of the CampaignPerformanceReport and then use the campaign ids to filter in the Criteria Performance Report. You have to perform 2 report calls in

Re: Filter by campaign type in adwords api reporting python

2019-06-23 Thread Praveen Jose
Hi Sai, I understand that CampaignType is not a field that can be filtered on for Criteria performance report. I wanted to know if there is any other possible solution or workaround which can accomplish the Display only campaigntypes to be filtered for my report generation Thanks, Praveen

RE: Filter by campaign type in adwords api reporting python

2019-06-21 Thread Google Ads API Forum Advisor Prod
Hello Praveen, The CampaignType field is not available in the criteria performance report, hence it is not possible to filter by CampaignType field. However to get an idea on using predicates with selector I am filtering the results with CriteriaType filed. Please find my report definition

Re: Filter by campaign type in adwords api reporting python

2019-06-21 Thread Praveen Jose
Hi Sai, Could you let me know the status of my query? Thanks and much appreicated Regards, Praveen On Wednesday, June 19, 2019 at 1:16:45 PM UTC+5:30, Praveen Jose wrote: > > Hi Guys, > > > I am reaching out since I am in need of some guidance here. > > > I am using the python code package

RE: Filter by campaign type in adwords api reporting python

2019-06-19 Thread Google Ads API Forum Advisor Prod
Hello Praveen, The CampaignType field is not available in the criteria performance report. However to get an idea on using predicates with selector I am filtering the results with CriteriaType filed. Please find my report definition below. report = { reportName: Last 7 days

Filter by campaign type in adwords api reporting python

2019-06-19 Thread Praveen Jose
Hi Guys, I am reaching out since I am in need of some guidance here. I am using the python code package to pull a criteria performance report . However i have a requirement to filter by Campaign type = 'Display Only' for this report generation Could you please advise me as to how I can