Set targeting campaign level to Observation

2020-05-12 Thread Juan Carlos Blanco Delgado
Hello, I am trying to use the API to set the targeting settings to *Observation. *Any guidance how is this possible? Thank you! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: Python example of the Ad schedule mutation

2019-12-17 Thread Juan Carlos Blanco Delgado
Hello, sorry I found the solution following the example, thank you so much!!! On Tuesday, December 17, 2019 at 4:11:53 PM UTC, Juan Carlos Blanco Delgado wrote: > > Hello, I made it work!!! > > The problem was the MCC account I was using, I have several MCC accounts > and a

Re: Python example of the Ad schedule mutation

2019-12-17 Thread Juan Carlos Blanco Delgado
Hello, I made it work!!! The problem was the MCC account I was using, I have several MCC accounts and a top MCC as well. Now, could you help me how to update a bank and change an adschedule??? Any example??? On Monday, December 2, 2019 at 5:25:23 PM UTC, adsapiforumadvisor wrote: > > Hi Juan,

Re: Python example of the Ad schedule mutation

2019-11-29 Thread Juan Carlos Blanco Delgado
I found a solution but it does not work completly campaign_criterion_service = client.GetService( 'CampaignCriterionService', version='v201809') # Construct selector and get all campaign targets. offset = 0 selector = { 'fields': ['DayOfWeek', 'StartHour', 'StartMinute', 'EndHour', 'EndMinute'],

Re: Python example of the Ad schedule mutation

2019-11-29 Thread Juan Carlos Blanco Delgado
I found a solution but it does not return anything :( selector = { 'fields': ['DayOfWeek', 'StartHour', 'StartMinute', 'EndHour', 'EndMinute'], 'paging': { 'startIndex': str(offset), 'numberResults': str(PAGE_SIZE) } } I need to get all the AdSchedule for all my campaigns, or if it is eaisier,

Re: Python example of the Ad schedule mutation

2019-11-20 Thread Juan Carlos Blanco Delgado
Hi Anthony, Thank you for your reply. I cannot find a way to do it properly, it does not work, do you have any snippet any language to have an idea, the reference on the website is not very helpful :( On Wednesday, November 13, 2019 at 5:11:57 PM UTC, adsapiforumadvisor wrote: > > Hi Juan,

Python example of the Ad schedule mutation

2019-11-13 Thread Juan Carlos Blanco Delgado
Hello, I was trying to find an example of how to edit/create/delete an ad schedule of a campaign. Thank you!!! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You rece

Re: Get / Delete Ad Schedule API

2019-11-01 Thread Juan Carlos Blanco Delgado
Hi Bharani, Thank you for your reply! I want to modify the Ad schedule, not reporting. To elaborate a little more, within our company we have thousands of campaigns, and when there is a holiday we want to stop those campaigns. I could do it with AdWords script but the 30 minutes limit is not

Get / Delete Ad Schedule API

2019-10-31 Thread Juan Carlos Blanco Delgado
Hello, I am trying to get the Ad Schedule using the API, I can do it using Google AdWords Scripts but I need to change the ad schedule of too many campaigns and the 30 minutes is not enough. If I have to use API Beta will be ok, any solutions to solve this issue. Thank you -- -- =~=~=~=~

Python - CAMPAIGN_PERFORMANCE_REPORT using CSVFOREXCEL

2019-10-18 Thread Juan Carlos Blanco Delgado
Hello, I have a problem download this report, see code below. .Select('Impressions', 'Clicks', 'Cost') .From('CAMPAIGN_PERFORMANCE_REPORT') .Where('CampaignName').EqualTo(CAMPAIGN_NAME) .Build()) I successfully download the report as a CSV, b

How to get all the campaign from top MCC account

2019-09-30 Thread Juan Carlos Blanco Delgado
Hello, I have my API working, but I my Adwords API has this tree: - MCC account - MCC_SubLevel1 - MCC_SubLevel2 - MCC_SubLevel3 MCC_SubLevel3 has the campaigns The problem is that my googleads.yaml only accepts one MCC account and I need all the campaigns that matches a descrip

Re: First time using API of Ad Words

2019-07-31 Thread Juan Carlos Blanco Delgado
Hi Ejay, I have already created the Token from my production account. I have created a Test Manager Account, and Test Account appears on the top right corner! Now, I dont know how to create a Test Account, should I just invite myself using an email not associated to Google adwords? On Wedne

First time using API of Ad Words

2019-07-30 Thread Juan Carlos Blanco Delgado
Hello guys, My apologies for this question. There is a lot of information and google offers a lot of how to start. I just need short guide of how to start. I am a python developer (junior, just to be clear) so I would like to use python to use my Google Adwords Account and retrieve data of m

Re: First impression or creation date of a keyword

2019-07-29 Thread Juan Carlos Blanco Delgado
Hi Ejay, Yes it is helpful! This is what I have so far. I need to select the CampaignName, AdGroupName, FinalUrls and KeywordMatchType. And I am assuming that FinalUrls are the landing page? SELECT CampaignName, AdGroupName, FinalUrls, KeywordMatchType FROM KEYWORDS_PERFORMANCE_REPORT WHE

First impression or creation date of a keyword

2019-07-29 Thread Juan Carlos Blanco Delgado
Hello, I have a project that I was trying to finish using Adwords scripts but as I just recently found out, there is a limit running scripts for 30 minutes. I need to check when was a keyword created on every campaign of an account that contains 404 campaigns working since 2008. Could be pos