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/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/82d9eb6b-f707-482e-9604-ba86983a173c%40googlegroups.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 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,
>>
>> Can you please share your logs with me through *reply privately to 
>> author *so I can see where the issue is? If you haven't enabled logging, 
>> you can follow the steps here 
>> <https://github.com/googleads/googleads-python-lib#how-do-i-log-soap-interactions>
>> .
>>
>> You can add filters on a campaign by adding a predicate like it is done 
>> here 
>> <https://github.com/googleads/googleads-python-lib/blob/master/examples/adwords/v201809/targeting/get_campaign_targeting_criteria.py#L44>
>> .
>>
>> Regards,
>> Anthony
>> Google Ads API Team  
>>
>> ref:_00D1U1174p._5001UJaVr8:ref
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0a797b34-6b07-424d-a7c2-2c977e7f7b0e%40googlegroups.com.


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,
>
> Can you please share your logs with me through *reply privately to 
> author *so I can see where the issue is? If you haven't enabled logging, 
> you can follow the steps here 
> 
> .
>
> You can add filters on a campaign by adding a predicate like it is done 
> here 
> 
> .
>
> Regards,
> Anthony
> Google Ads API Team  
>
> ref:_00D1U1174p._5001UJaVr8:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c6444266-1470-43fc-acfe-27760b708de5%40googlegroups.com.


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'],
'paging': {
'startIndex': str(offset),
'numberResults': str(PAGE_SIZE)
}
}

page = campaign_criterion_service.get(selector)

It returns an empty campaign object, could you help me please?

See the result below

{
'totalNumEntries': 0,
'Page.Type': 'CampaignCriterionPage',
'entries': []
}

If you can also help me to filter the results by campaign, like starts with 
of a specific string, will be also great! 

On Thursday, November 21, 2019 at 7:48:33 PM UTC, adsapiforumadvisor wrote:
>
> Hi Juan,
>
> Unfortunately, we don't have any examples on how to add it using any 
> language. Just like with other criteria, you will need to set the fields 
> specific to the criteria. For ad schedules, you will need to set fields 
> such as start_hour and end_hour. If you are facing any difficulties, you 
> can share your logs 
> 
>  
> so that I can take a closer look. 
>
> Regards,
> Anthony
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UJaVr8:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ebf88efc-c321-4a6e-aed4-9dd7ce590d9a%40googlegroups.com.


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, 
campaigns that start with a specific string, it does not work :(


On Thursday, November 21, 2019 at 7:48:33 PM UTC, adsapiforumadvisor wrote:
>
> Hi Juan,
>
> Unfortunately, we don't have any examples on how to add it using any 
> language. Just like with other criteria, you will need to set the fields 
> specific to the criteria. For ad schedules, you will need to set fields 
> such as start_hour and end_hour. If you are facing any difficulties, you 
> can share your logs 
> 
>  
> so that I can take a closer look. 
>
> Regards,
> Anthony
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UJaVr8:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3a6cbfcb-18b7-4d5e-93de-69d5cfe1a933%40googlegroups.com.


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,
>
> Unfortunately, we don't have an example on adding ad schedules using the 
> API. You will need to use the CampaignCriterionService with a criteria of 
> AdScheduleInfo 
> .
>  You 
> can use example 
> 
>  
> as a reference. It shows how to add locations and negative keywords 
> criteria using the CampaignCriterionService.
>
> Regards,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5001UJaVr8:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f0483e8a-c1d4-46ce-8fee-7c5eee6541ac%40googlegroups.com.


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 received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b363a202-e76d-4cab-b06a-3a428e8fd7bd%40googlegroups.com.


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 enough to 
delete the ad schedule. 

How can I modify an ad schedule by using the API? 

On Thursday, October 31, 2019 at 7:56:10 PM UTC, adsapiforumadvisor wrote:
>
> Hi Juan, 
>
> We recommend to continue running production systems using the AdWords API. 
> While Google Ads API is in “beta”, you may use the new API for testing and 
> development work in preparation for future migration. If you're using 
> Google Ads API for your internal testing, you may use the 
> campaign_criterion 
>  
> resource. 
> If you're using AdWords API, the Criteria Performance Report 
> 
>  
> will return this data. If your concern is different, could you please 
> elaborate with a screenshot from the UI?
>
> Thanks,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UKP9Wa:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/54777d3f-f3b5-44f8-a416-9cea2ce68cbd%40googlegroups.com.


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 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b0a25cfd-28a0-438b-a30e-b32c67230421%40googlegroups.com.


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, but the Cost for some reason 
comes with the decimal point, so I see a massive number instead of a 3 
digits numbers.

For CSV I have this code 

output = io.StringIO()


reportDownloader.DownloadReportWithAwql(
reportQuery,
'CSV',
output,

client_customer_id=ID,
skip_report_header=False,
skip_column_header=False,
skip_report_summary=False,
include_zero_impressions=False
)



I thought to download it as a CSVFOREXCEL , so I changed the format type 




output = io.BytesIO()




reportDownloader.DownloadReportWithAwql(
reportQuery,
'CSVFOREXCEL',
output,

client_customer_id=ID,
skip_report_header=False,
skip_column_header=False,
skip_report_summary=False,
include_zero_impressions=False
)


The problem is the data comes as bytes, and I tried also with io.StringIO() 
and it does not accep it

Thank you!!!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9f3edc0c-c489-4614-888f-1ef1cb14492c%40googlegroups.com.


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 description from the top MCC account, 
in other works, check all the campaigns from my adwords account.

Thank you!!!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b45b5c6e-dea0-49d6-9edd-b5a892faa603%40googlegroups.com.


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 Wednesday, July 31, 2019 at 8:41:12 AM UTC+1, adsapiforumadvisor wrote:
>
> Hi Juan,
>
> No worries, feel free to reach out our team if you have questions/concerns.
>
> With regard to the Github link that you provided, that is the client 
> library that you may download if you want to use the Python language for 
> developing your application using AdWords API. 
>
> Moving forward, you may refer to the Reporting Basics 
>  
> documents if you want to know how get the performance data of your AdWords 
> entities and to know the steps necessary to create and submit a report 
> request.
>
> Furthermore, you can use the Campaign Performance Report 
> 
>  to 
> retrieve data of campaigns, Keywords Performance Report 
> 
>  
> for keywords, and Landing Page Report 
> 
>  
> for landing pages. You may refer to this link 
> 
>  
> to see all the report types in AdWords API.
>
> Regards,
> Ejay
> Google Ads API Team
>
> ref:_00D1U1174p._5001UEHFlC:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ae229557-1870-4e2f-95da-1b73ffafbba6%40googlegroups.com.


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 my campaigns, 
such as impressions per keyword and landing page, or negative list that 
belongs to a specific campaign.

I have this github tutorial which looks amazing 
https://github.com/googleads/googleads-python-lib

Could you tell me is there is something similar or something else???

I just need a jump to start because between ads script, AWQL and the api 
calls I am a little confused.

Thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2100c74d-80ad-4837-a103-6315a3bd9a2f%40googlegroups.com.


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
WHERE CampaignName
LIKE "%404%" DURING 20081305,20190725

if the above is correct, how can I actually pass this to a spreadsheet, I 
dont know how to iterate the result

And I also need the name of the keyword which I dont know which attribute is

And how can I filter by date??? I thought that ordered by date was not 
allowed 


On Monday, July 29, 2019 at 11:39:56 AM UTC+1, adsapiforumadvisor wrote:
>
> Hi Juan,
>
> Thank you for posting your concern. 
>
> I would recommend to utilize the Keywords Performance Report 
> 
>  and 
> include a filter using the CampaignName 
> 
>  field 
> to get the campaigns that contains '*404*' in its name. You should then 
> inlcude the Date 
> 
>  field 
> as well so you can check the earliest date as to when impressions were 
> generated.
>
> However, since you want to retrieve the data and impressions of keywords 
> that is working since 2018, the output will be extremely large. If you 
> encounter timeouts 
>  
> because 
> of this reason, try a shorter date range or use predicates to break up the 
> report request into multiple, smaller requests.
>
> Let me know if this is what you're looking for.
>
> Regards,
> Ejay
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UEGxs3:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/04612dc9-1951-4109-a2e1-4a62a2abf985%40googlegroups.com.


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 possible to do it using the Adwords API?

My first idea, because there is not creation date of a keyword using 
Adwords Scripts, was to check when was the first impression of a keyword 
and then use that date as an approx creation date, the problem is that 
after the first impression and I go to the next date and there is an 
impression I need to check if the keyword has already been added, therefore 
every need keyword has to be added to a list, and the bigger the list the 
longer it takes to check if the keyword already exist.

Could be possible to do this faster or another method using the API???

Thank you!!!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/382fbb5a-e78e-4213-8c35-8c7a20b3cc24%40googlegroups.com.