data about suspended accounts

2017-11-20 Thread Ted Kuo
Dear All,

I have aquestion here.
Is there any possibility to extract the "suspended accounts" status?
I looked for a solution in "type PolicyTopicEntry" to see if there was a 
possibility, but there is only "UNKNOWN", "PROHIBITED", and "LIMITED".

https://developers.google.com/adwords/api/docs/reference/v201705/AdGroupAdService.PolicyTopicEntry


thanks in advanced.
Ted

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f05962d3-cca0-4a0e-b883-2757f0aee066%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ad group label filter for ad performance report

2017-11-20 Thread harish.padmakar via AdWords API Forum
Hi Bharani,
The below is the code that I used. Please guide me so that I can download 
ad report with necessary columns and metrics.

import sys
from googleads import adwords

def main(client):
# Initialize appropriate service.
report_downloader = client.GetReportDownloader(version='v201710')

# Create report query.
report_query = (adwords.ReportQueryBuilder()
  .Select('AdGroupName','Labels','Impressions', 
'Clicks','Cost')
  .From('AD_PERFORMANCE_REPORT')
  .Where('Status').In('ENABLED', 'PAUSED')
  .During('LAST_7_DAYS')
  .Build())

# You can provide a file object to write the output to. For this
# demonstration we use sys.stdout to write the report to the screen.
result = report_downloader.DownloadReportAsStringWithAwql(report_query, 
'CSV', skip_report_header=False, 

skip_column_header=False,skip_report_summary=False, 

include_zero_impressions=True)
file_path = 'my path'
with open(file_path, 'w') as out_file:
out_file.write(result)

if __name__ == '__main__':
  # Initialize client object.
adwords_client = adwords.AdWordsClient.LoadFromStorage(path of 
credentials.yaml")
adwords_client.client_customer_id = 'my id goes here'
main(adwords_client)
Thanks!

On Friday, 17 November 2017 01:08:21 UTC+5:30, Bharani Cherukuri (AdWords 
API Team) wrote:
>
> Hi Harish, 
>
> Can you confirm which version of the googleads-python client library 
>  are you 
> using. The ReportQueryBuilder change was introduced in v9.0.0. If you're 
> using an earlier version of the library and trying to use the samples from 
> the latest version, you might encounter this error.
>
> Regards,
> Bharani, AdWords API Team
>
> On Tuesday, November 14, 2017 at 5:05:21 AM UTC-5, 
> harish@latentview.com wrote:
>>
>> Is it possible to apply adgroup label filter while downloading ad 
>> performance report? (This is not possible using the UI)
>>
>> This email may contain confidential and privileged information for the sole 
>> use of the intended recipient. Any review or distribution by others is 
>> strictly prohibited. If you are not the intended recipient, please reply 
>> back to the sender about the error and delete all copies of this email 
>> message. Thank you.
>>
>>
-- 


This email may contain confidential and privileged information for the sole use 
of the intended recipient. Any review or distribution by others is strictly 
prohibited. If you are not the intended recipient, please reply back to the 
sender about the error and delete all copies of this email message. Thank you.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/102103bc-7944-40a0-8994-7e7ab9742f31%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords API throwing DetailedReportDownloadResponseException with 400 Response code.

2017-11-20 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

A gentle follow up on this. If you are still encountering this issue, then 
kindly provide the information that I asked on my previous reply via *Reply 
privately to author* option.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ffe2ece0-10dd-4a02-bece-cf83db27e7bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I am getting different clicks and impression values in the api report ,from the adwords dashboard values

2017-11-20 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

A gentle follow up on this. If you still have issues on this, then kindly 
provide the details that I asked previously via *Reply privately to author*
 option.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c7ead818-668b-4075-91e9-9a5e1c2e417e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Perf report: Are attribute columns the snapshots at the download time?

2017-11-20 Thread 'Peter Oliquino' via AdWords API Forum
Hi Chenrui,

Without setting up filters, you should be able to retrieve all current and 
historical data. As for your campaign that served during August 1 to August 
31, it will not be returned if you specified a date range only for July or 
only for September. It will be included when you specify a date range from 
July to September.

This being said, I would recommend that you explicitly define filters so 
that you could get the precise information that you need.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/30576d12-d864-4538-9c3b-bdffe26c1f4a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: less result of CRITERIA_PERFORMANCE_REPORT

2017-11-20 Thread 'Peter Oliquino' via AdWords API Forum
Hi Kawachi,

No worries and I'm glad that you are now able to view reports without 
discrepancies. Should you encounter any further issues, feel free to write 
us back.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/33fa6018-63dd-455d-80c8-406863156b31%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Perf report: Are attribute columns the snapshots at the download time?

2017-11-20 Thread chenrui zhang
Hi Peter,

Very appreciate for your reply!

There are two additional questions,* what data will be downloaded with no 
filters (default setting)?*
If one campaign's lifetime is *from 8/1/2017 to 8/31/2017*, when I download 
*July* or *September* performance data, *will this campaign be downloaded?*

Thanks in advance.

Best regards,
Chenrui

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f76c932a-8810-405f-8b4f-f83dfe794644%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Developer Token Not Approved

2017-11-20 Thread ngala . nts . net
Hi Sreelakshmi,

It seems, I haven't completed this second part as i never reached this 
form. Also, I notice this is a form requesting a fresh new token and asks 
questions about previous tokens if any. I am not sure whether i have to 
fill out a fresh new token form and submit it, but will submit it and see 
what reviewer team decides.

Thank you,
Nishant

On Monday, November 20, 2017 at 2:27:11 PM UTC-8, Sreelakshmi Sasidharan 
(AdWords API Team) wrote:
>
> Hi Nishant, 
>
> Have you filled out the second part 
>  of the application form? 
> If not, please go ahead and fill it out. Once you submit that form, the 
> AdWords API Compliance team will respond with an answer within a business 
> day. 
>
> If you did fill out this form, you can contact the API compliance team 
> directly via this form  and 
> check the status of your application.
>
> Thanks,
> Sreelakshmi, AdWords API Team
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/553a4ce1-89be-429c-a8b7-9c09f7088b41%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: TargetingIdeaService With Suggested Bid Filter

2017-11-20 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

You can use the AVERAGE_CPC 

 to 
get an approximate value corresponding to the suggested bid in the Keyword 
Planner. You will be able to set the Average CPC field through the 
TargetingIdeaSelector 
.
 
You may refer to this guide 

 on 
how the Keyword Planner attributes are mapped to the API. Let me know if 
you have any other questions.

Regards,
Bharani, AdWords API Team

On Monday, November 20, 2017 at 1:37:27 PM UTC-5, alvarov...@gmail.com 
wrote:
>
> Hii,
>
> Does anyone know how to set the suggested bid filteri with 
> TargetingIdeaService like this option in the UI?
>
>
>
> 
>
>
>
> Thanks and best regards
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/41cd985b-fc6e-43d6-b4b4-ecaabf3cd26c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Developer Token Not Approved

2017-11-20 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Nishant, 

Have you filled out the second part 
 of the application form? 
If not, please go ahead and fill it out. Once you submit that form, the 
AdWords API Compliance team will respond with an answer within a business 
day. 

If you did fill out this form, you can contact the API compliance team 
directly via this form  and 
check the status of your application.

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3c808e17-92d0-470d-82d8-589b698ec3ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Criterion ID

2017-11-20 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Shreya, 

You should be able to perform an AdGroupCriterionService.get() 

 or CampaignCriterionService.get() 

 to 
get the criterion Ids associated with ad group and campaign respectively. 
Please note that the criterion Id is not globally unique. The pair of 
AdGroupId and CriterionId will be globally unique and the pair of 
CampaignId and CriterionId will be globally unique. Please check this 

 guide 
for more details. 

Could you share more details of where you are getting this error? If you 
are getting this while performing an API operation, could you please share 
the SOAP logs along with your client customer id? Please use reply 
privately to the author while sharing the logs. 

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ff75c748-d893-4d4a-89f5-7d5d8a43d2bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Translations of Verticals?

2017-11-20 Thread Layne Shepherd
Sreelakshmi,

Thanks for your response.  That was exactly what I was looking for.  I had 
tried that earlier but was comparing the results to the csv here (
https://developers.google.com/adwords/api/docs/appendix/affinity_categories.csv)
 
(which appears to be outdated) and not to the list of affinity categories 
in the adwords UI.

On Monday, November 20, 2017 at 11:27:35 AM UTC-8, Sreelakshmi Sasidharan 
(AdWords API Team) wrote:
>
> Hi Layne, 
>
> You can use the userInterestTaxonomyType 
> 
>  : 
> BRAND to get the Affinity categories 
> 
>  via 
> API.
>
> Thanks,
> Sreelakshmi, AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/325266ac-b055-4959-8157-08f89c5421b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Google Search Partners Targeting through API

2017-11-20 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Rkohl, 

The *targetPartnerSearchNetwork* is different from *targetSearchNetwork*. 
You can find the details of the networks 

 here. 
The targetPartnerSearchNetwork is available only to select partners and 
should be set to "false" or "null" for everyone else. If this does not 
address your question, could you please enable logging and share the 
complete SOAP logs (request and response) along with your client customer 
id? Please use reply privately to author while sharing the details. 

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fb4e204a-8698-4274-9f86-8caaa6a8390c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Campaigns in Test Accounts ( AdWords )

2017-11-20 Thread 'Jude Amagoh' via AdWords API Forum
Hi,

Could you elaborate on what error(s) you faced while trying to create the 
campaigns? Please share the SOAP request and response logs so that I can 
take a look. 

Test accounts don't serve ads and you will not be charged for creating 
campaigns in the test accounts. If you need to run a campaign in your 
production AdWords accounts, you will be charged for the clicks/impressions 
of your Ads. 

Best Regards,
Jude, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cebfc298-0bf3-4349-8055-b21826657519%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Как скрыть или удалить объявления и ключевые слова из удаленной группы?

2017-11-20 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

If you delete AdGroups, the content within that AdGroup is deactivated. The 
keywords and Ads still show as "enabled" because they were part of the 
AdGroup that were deleted. You may refer to this article 

 or this guide  for 
additional information. If you have any other questions, I'd suggest that 
you post your questions on the Advertisers community forum 
 
as 
they are better equipped to address any UI related concerns. 

Regards,
Bharani, AdWords API Team

On Monday, November 20, 2017 at 10:14:17 AM UTC-5, tileex...@gmail.com 
wrote:
>
> Добрый день, столкнулись с такой проблемой:
> удалили группу объявлений, а объявления и ключевые слова в ней не удалили. 
> Теперь ничего нельзя с ними сделать, НО объявления видны как включеные, как 
> их можно скрыть?
>
>
> 
>
>
> 
>
> И можно ли вообще установить статус ключевым словам, что они удалены?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ac85534c-18ec-46bc-832f-fe897497671f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Translations of Verticals?

2017-11-20 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Layne, 

You can use the userInterestTaxonomyType 

 : 
BRAND to get the Affinity categories 

 via 
API.

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/26f46ff2-7353-445c-917c-b1d6c4ab7c27%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to set up and connect API for Google Customer Match

2017-11-20 Thread 'Jude Amagoh' via AdWords API Forum
Hi Anja,

I'm from AdWords API Team. To get started with using the AdWords API, you 
will need to request access for the API by following the steps listed here 
.
 
Please note that you'll be granted a developer token with test access which 
can be used to target test accounts. While you wait for your access to get 
approved, you could start testing the API using your test accounts 
.
 
To make the first API call, you need to follow this 
 guide. 
Once you have your developer token approved, you will able to make API 
calls against the production accounts as well. 

Please let me know if you have any difficulties. 

Best Regards,
Jude, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ccaa7d00-effe-4038-9c98-73667cef6e14%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: In migrating to v201710, I have some problems in getting Expaned Text Ad.

2017-11-20 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, 

Please find my response inline : 

   1. How to get policy summary attributes 
   The policySummary(AdGroupAdPolicySummary 
   
)
 
   will contain the policy information for the specific ad. To get the 
   attributes of the policy summary, you will need to include 'PolicySummary' 
   in the selector. You should be a able to get the attributes of policy 
   summary like review state and the combine approval status as shown below :
   $adGroupAd->getPolicySummary()->getReviewState(),
   $adGroupAd->getPolicySummary()->getcombinedApprovalStatus()
   
   If you are not able to get the value for this, could you enable logging 
   and share the SOAP logs (request and response)?


   1. Path 1 and path 2 are null :
   The attributes of an Ad will vary depending on the type of the Ad. Could 
   you confirm that the Ad for which you get null values for path 1 and path 2 
   are expanded text ads 
   
?
 
   If so, could you please share your AdGroupId and the Ad Id so I can take a 
   look?

Please use reply privately to author while sharing the logs. 

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/890d8667-040b-40eb-992c-55f47ce29faa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Developer Token Not Approved

2017-11-20 Thread ngala . nts . net
Hi,

I am very new to google adwords api have used analytics api before so 
followed the steps from making the first api call to adwords api and 
generated the developer token.
My company have a mcc account and few accounts under mcc accounts which i 
am using to run a test program getCampaign.java where in it complaints me 
about Dev token not approved. 
I generated the token on friday and only data i need to access is the count 
of clicks on the ads.
I am not sure whether i am missing out on something or whats the issue. 

How long does it take to get the token approved ? 
Is there anything on my end yet to be done which is y the dev token is 
still not approved ?

Looking forward for some replies.

Thank you,
Nishant.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f887f684-f494-47c1-a002-4b6e2e48cd3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Campaigns in Test Accounts ( AdWords )

2017-11-20 Thread zinorshakya10
I've created a test account in ad words . But i am not getting access to 
Create a campaign. Is there any way to use the campaigns for free?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2b2a08e0-62df-4901-8b80-2b124c20d79d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Criterion ID

2017-11-20 Thread SHREYA
when i give criterion ID as input, it is showing an "invalid criterion id" 
error. how do i know which criterion id is to be used for various targeting 
fields(eg:content label, criterion user list"

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e5d6628c-8f0e-48b5-8bfa-16537c3b8a8d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


TargetingIdeaService With Suggested Bid Filter

2017-11-20 Thread alvarovargas91


Hii,

Does anyone know how to set the suggested bid filteri with 
TargetingIdeaService like this option in the UI?






Thanks and best regards

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6a335f85-ed47-465e-9386-0acf345d8d2d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to set up and connect API for Google Customer Match

2017-11-20 Thread anja . wojcik
Hello,

I'm looking to set up an API for our client account in AdWords and would 
like to have a detailed step to step guide how to proceed getting this 
implemented.

Thanks,
Anja

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1e8e0869-5220-49f5-ac22-33385e9e6cd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Search Partners Targeting through API

2017-11-20 Thread rkohl
Hi, 
We have attempted to push campaigns with the targeting set to include 
Google Search Partners through the API. However upon push we receive an 
error that states the following:

*CANNOT_TARGET_PARTNER_SEARCH_NETWORK Only some Google partners are allowed 
to target partner search network.*

However upon research we found this article: 
https://developers.google.com/adwords/api/docs/reference/v201705/DraftAsyncErrorService.CampaignError.Reason

My issue is, upon looking when we push without targeting Search Network 
Partners, it is still being targeted within the Adwords UI. Therefore, does 
this mean that it is compulsory and that we do not need to target? 



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6276aa84-ec6b-446c-9e5f-aefd18fd650e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to get parallel report for a manager account from php library ??

2017-11-20 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

Thank you for confirming this. If you're using the PHP client library, you 
may refer to this particular line 

 of 
the code sample which retrieves all accounts that are directly under the 
manager account. Once the report definition is created, the reports will be 
downloaded for each account in the list. You may refer to the iteration 
logic 

 here 
for each report download under the manager account. For each successful 
report download, you will be able to log 

 the 
clientCustomerId associated with the report. You may refer to the PHP code 
sample here 

 as 
a reference. Let me know if you have any other questions. 

Regards,
Bharani, AdWords API Team

On Thursday, November 16, 2017 at 4:07:52 AM UTC-5, testg...@gmail.com 
wrote:
>
> Hello guys, I am looking for downloading the customers reports under the 
> manager account from parallel report downloader.php but I am getting an 
> error "AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED" Can any one 
> please show me the right way to do it...
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5487f362-36b1-4ed7-bde8-b2cbd940ba63%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Как скрыть или удалить объявления и ключевые слова из удаленной группы?

2017-11-20 Thread tileexpert . ad
Добрый день, столкнулись с такой проблемой:
удалили группу объявлений, а объявления и ключевые слова в ней не удалили. 
Теперь ничего нельзя с ними сделать, НО объявления видны как включеные, как 
их можно скрыть?





И можно ли вообще установить статус ключевым словам, что они удалены?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9fc11a65-4178-4335-8040-49f708d013f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't see campaign in CAMPAIGN_PERFORMANCE_REPORT which exist in Adwords UI

2017-11-20 Thread Oksana Sulyma
Copying private message response in case somebody else is interested in 
this thread question.

Hi Oksana,

The AdWords and AdWords Express user interfaces have filtering in place as 
follows:

   1. The AdWords user interface will *exclude* AdWords Express campaigns.
   2. The AdWords Express user interface will *only include* AdWords 
   Express campaigns.
   3. AdWords API reports will include all campaigns, regardless of whether 
   or not they are AdWords Express campaigns.

Therefore, when trying to tie numbers from AdWords API reports to the user 
interface on a per-campaign basis, you'll have to add together your stats 
from both the AdWords user interface and the AdWords Express user interface.

Please let me know if that doesn't clear things up.

Cheers,
Josh, AdWords API Team


On Thursday, November 16, 2017 at 3:41:06 PM UTC+2, Oksana Sulyma wrote:
>
> Hi guys!
> I wonder if there exist some special settings which could prevent campaign 
> to appear in API Reports? 
> I have examples for two different clients.
> For one there exists Adwords Express campaign, but I don't get it in 
> CAMPAIGN_PERFORMANCE_REPORT and from CampaignService.
> For another I get two Adwords Express campaigns in report, but statistic 
> from CAMPAIGN_PERFORMANCE_REPORT for account and Adwords UI for account 
> doesn't match. 
> Same code works fine and long for thousands of other clients.
> Can provide profiles ids in private message.
> Any ideas will be appreciated.
> Thanks,
> Oksana
>

On Thursday, November 16, 2017 at 3:41:06 PM UTC+2, Oksana Sulyma wrote:
>
> Hi guys!
> I wonder if there exist some special settings which could prevent campaign 
> to appear in API Reports? 
> I have examples for two different clients.
> For one there exists Adwords Express campaign, but I don't get it in 
> CAMPAIGN_PERFORMANCE_REPORT and from CampaignService.
> For another I get two Adwords Express campaigns in report, but statistic 
> from CAMPAIGN_PERFORMANCE_REPORT for account and Adwords UI for account 
> doesn't match. 
> Same code works fine and long for thousands of other clients.
> Can provide profiles ids in private message.
> Any ideas will be appreciated.
> Thanks,
> Oksana
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0cca40ba-e0f5-4677-a6f4-21dafe8527fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: less result of CRITERIA_PERFORMANCE_REPORT

2017-11-20 Thread kawachi
Thank you Peter

I noticed my mistake that I set Predicates.CriteriaType on requeting api , 
but missing data was belonged to not appointed type.

I'm very sorry. and Thank you very mach.

2017年11月20日月曜日 18時04分24秒 UTC+9 Peter Oliquino:
>
> Hi Kawachi,
>
> If you are referring to the Campaigns tab in the AdWords UI then I would 
> recommend that you also use the Campaign Performance Report instead of the 
> Criteria Performance Report, as seen in this guide 
> , 
> to avoid any discrepancies. This being said, could you try the Campaign 
> Performance Report 
> 
>  and 
> see if you are still encountering discrepancies with the report seen via 
> the AdWords UI? 
>
> Should there be any discrepancies, you may send to me the complete 
> screenshot of the AdWords UI report and also send the complete report 
> definition 
> 
>  that 
> you used so I can further investigate. You may reply using the *Reply 
> privately to author* option. 
>
> I also had to delete one of your initial posts as it contained your actual 
> clientCustomerId. For future posts, you may refer to our forum posting 
> guidelines 
>  
> in 
> order to avoid exposing personal and sensitive information.
>
> Best regards,
> Peter
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4bca3f10-22e0-4afd-adda-a7e590a8cd86%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


In migrating to v201710, I have some problems in getting Expaned Text Ad.

2017-11-20 Thread Sang Jin Kim

I've been migrating API version from old v201609 to the newest v201710.

I'm PHP developer.


Below is a code that get Expanded Text Ads information.

=

$adGroupAdService = $adWordsServices->get($session, 
AdGroupAdService::class);

// Create a selector to select all ads for the specified ad group.
$selector = new Selector();
$selector->setFields(['Id', 'Status', 'HeadlinePart1', 'HeadlinePart2', 
'Description']);
$selector->setOrdering([new OrderBy('Id', SortOrder::ASCENDING)]);
$selector->setPredicates([
new Predicate('AdGroupId', PredicateOperator::IN, [$AdGroupId]),
new Predicate('AdType', PredicateOperator::IN, [AdType::EXPANDED_TEXT_AD]),
new Predicate('Status', PredicateOperator::IN, [AdGroupAdStatus::ENABLED, 
AdGroupAdStatus::PAUSED, AdGroupAdStatus::DISABLED])
]);

$selector->setPaging(new Paging(0, self::PAGE_LIMIT));


$totalNumEntries = 0;

do {

  // Retrieve ad group ads one page at a time, continuing to request pages
  // until all ad group ads have been retrieved.
  $page = $adGroupAdService->get($selector);

  // Print out some information for each ad group ad.
  if ($page->getEntries() !== null) {

$totalNumEntries = $page->getTotalNumEntries();

foreach ($page->getEntries() as $adGroupAd) {


$AdId = $adGroupAd->getAd()->getId();

echo "AdId : ".$AdId."\n";


$status = $adGroupAd->getStatus();

echo "status : ".$status."\n"; //ENABLED, PAUSED, DISABLED



//The approvalStatus, trademarks, disapprovalReasons, and 
trademarkDisapproved fields of AdGroupAd have been removed. Use 
AdGroupAd.policySummary instead.
//https://developers.google.com/adwords/api/docs/guides/migration/v201705


$PolicySummary = $adGroupAd->getPolicySummary();

var_dump($PolicySummary);   //return NULL



/*
$approvalStatus = $adGroupAd->getApprovalStatus();
echo "approvalStatus : ".$approvalStatus."\n"; //APPROVED, DISAPPROVED, 
FAMILY_SAFE, NON_FAMILY_SAFE, PORN, UNCHECKED, UNKNOWN

$disapprovalReasons = $adGroupAd->getDisapprovalReasons();
$disapprovalReasons = $disapprovalReasons[0];
echo "disapprovalReasons : ".$disapprovalReasons."\n"; //Array
*/



$headline1 = $adGroupAd->getAd()->getHeadlinePart1();

echo "headline1 : ".$headline1."\n";

$headline2 = $adGroupAd->getAd()->getHeadlinePart2();

echo "headline2 : ".$headline2."\n";

$description = $adGroupAd->getAd()->getDescription();

echo "description : ".$description."\n";


$path1 = $adGroupAd->getAd()->getPath1();

echo "path1 : ".$path1."\n";

$path2 = $adGroupAd->getAd()->getPath2();

echo "path2 : ".$path2."\n";


  }

  
$selector->getPaging()->setStartIndex($selector->getPaging()->getStartIndex() 
+ self::PAGE_LIMIT);


} while ($selector->getPaging()->getStartIndex() < $totalNumEntries);


=



[Problem 1]

-
https://developers.google.com/adwords/api/docs/guides/migration/v201705

AdGroupAd.approvalStatus

The approvalStatus, trademarks, disapprovalReasons, and 
trademarkDisapprovedfields 
of AdGroupAd have been removed. Use AdGroupAd.policySummary 

 instead.

-


Before migration to v201710, I successfully retrieved approvalStatus, 
disapprovalReasons. 
As described in migration guide, I try to use AdGroupAd.policySummary API, 
which returns only null value.


 $PolicySummary = $adGroupAd->getPolicySummary();


 var_dump($PolicySummary);   //return NULL



How should I write code for combinedApprovalStatus.



https://developers.google.com/adwords/api/docs/reference/v201710/AdGroupAdService.AdGroupAdPolicySummary



[Problem 2]

After migrating from v201609 to v201710, retrieving path1 & path2 of 
displayurl returns null.

As below code, headline1, headline2, description work well. But only path1 
& path2 return null. what's the problem in my code


$headline1 = $adGroupAd->getAd()->getHeadlinePart1();

echo "headline1 : ".$headline1."\n";

$headline2 = $adGroupAd->getAd()->getHeadlinePart2();

echo "headline2 : ".$headline2."\n";

$description = $adGroupAd->getAd()->getDescription();

echo "description : ".$description."\n";

$path1 = $adGroupAd->getAd()->getPath1();

echo "path1 : ".$path1."\n";

$path2 = $adGroupAd->getAd()->getPath2();

echo "path2 : ".$path2."\n";




Thanks, in advance!!


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message 

Re: Translations of Verticals?

2017-11-20 Thread Layne Shepherd
Unfortunately, ConstantDataService.getUserInterestCriterion does not return 
affinity categories.  How can i retrieve affinity categories 
programmatically via the API?

On Wednesday, September 20, 2017 at 7:51:54 AM UTC-7, Shwetha Vastrad 
(AdWords API Team) wrote:
>
> Hi, 
>
> Criteria with the prefix "uservertical" are of type CriterionUserInterest 
> .
>  To 
> get more details for each identifier, you need to use either of the 
> following:
>
>- The Affinity categories 
>
> 
> and In-market categories 
>
> 
> documentation.
>- ConstantDataService.getUserInterestCriterion 
>
> 
>  with 
>userInterestTaxonomyType = IN_MARKET.
>
> I'm afraid both the options will provide data in English only. You'll need 
> to use a translation tool to get categories in Chinese. 
>
> Regards,
> Shwetha, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b6b3399e-21f4-4aea-bf87-0f18f9ac98ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Translations of Verticals?

2017-11-20 Thread Layne Shepherd
Unfortunately, ConstantDataService.getUserInterestCriterion does not return 
affinity categories.  How can i retrieve affinity categories 
programmatically via the API?

On Wednesday, September 20, 2017 at 7:51:54 AM UTC-7, Shwetha Vastrad 
(AdWords API Team) wrote:
>
> Hi, 
>
> Criteria with the prefix "uservertical" are of type CriterionUserInterest 
> .
>  To 
> get more details for each identifier, you need to use either of the 
> following:
>
>- The Affinity categories 
>
> 
> and In-market categories 
>
> 
> documentation.
>- ConstantDataService.getUserInterestCriterion 
>
> 
>  with 
>userInterestTaxonomyType = IN_MARKET.
>
> I'm afraid both the options will provide data in English only. You'll need 
> to use a translation tool to get categories in Chinese. 
>
> Regards,
> Shwetha, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1e2d2465-8cbd-445d-b159-4f99313d8904%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: less result of CRITERIA_PERFORMANCE_REPORT

2017-11-20 Thread 'Peter Oliquino' via AdWords API Forum
Hi Kawachi,

If you are referring to the Campaigns tab in the AdWords UI then I would 
recommend that you also use the Campaign Performance Report instead of the 
Criteria Performance Report, as seen in this guide 
, 
to avoid any discrepancies. This being said, could you try the Campaign 
Performance Report 

 and 
see if you are still encountering discrepancies with the report seen via 
the AdWords UI? 

Should there be any discrepancies, you may send to me the complete 
screenshot of the AdWords UI report and also send the complete report 
definition 

 that 
you used so I can further investigate. You may reply using the *Reply 
privately to author* option. 

I also had to delete one of your initial posts as it contained your actual 
clientCustomerId. For future posts, you may refer to our forum posting 
guidelines 
 in 
order to avoid exposing personal and sensitive information.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7ba243d5-6039-497d-90b7-c2f6d2f8d70f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Perf report: Are attribute columns the snapshots at the download time?

2017-11-20 Thread 'Peter Oliquino' via AdWords API Forum
Hi Chenrui,

Yes, all historical data of the object will be included in its associated 
report as long as you have applied the necessary filters or settings. In 
your scenario, for example, if you have applied the correct date range or 
added a filter for CampaignStatus 

 = 
REMOVED and set the includeZeroImpressions = true, then the deleted or 
removed campaign with no impressions will be included in your report.

For more information regarding reporting, you may refer to this guide 
. Feel 
free to write back if you have any further questions.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e78dd422-06a7-4e06-807a-f6c3081d5df9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Display Ad Issue - Misleading content

2017-11-20 Thread 'Peter Oliquino' via AdWords API Forum
Hi Akash,

Your concern about ads disapproval appears to be more product specific 
rather than the AdWords API itself. I would recommend that you contact the 
product experts in the AdWords Community Forum 
 
for 
further assistance.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3e42063e-5eca-437b-a783-c8f34dc49540%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Regarding the issue with LabelService - Might be affecting other services?

2017-11-20 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Juan,

According to the forum post 
 by Mike, 
if you are attempting to "tag various entities with the labels that are not 
visible", then this is also not possible due to the issue. An example of 
this is using the non-existing label to get campaigns via 
CampaignService.get() 

.

However, based on your code, you are not using a label in getting 
campaigns, so the label issue should not affect your current scenario. With 
this, can you provide your SOAP request and response logs so I can further 
investigate?

In regards to the label issue, the team is currently looking into this. 
We'll provide you updates when this issue is already fixed.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/17b6fb53-4a9a-4cdc-a4e0-d9c133c5c1e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: less result of CRITERIA_PERFORMANCE_REPORT

2017-11-20 Thread kawachi
Hi Peter,
Thank you for your reply.

I`m referring to campaigns screen. and seeing shown campaign value of click 
,impression ,cost, conversion .
I sum up value in Criteria Performance Report  grouping by campaigns , and 
matched to each values of campaign displaied in adwords ui .

some campaings of an account are not matched each report and ui. but 
another many account and it's values of campaigns are matched and same.

Is there something wrong about this way?


2017年11月20日月曜日 15時42分14秒 UTC+9 Peter Oliquino:
>
> Hi Kawachi,
>
> Could you confirm which screen in the AdWords UI are you referring to? For 
> the mapping of AdWords UI reports against AdWords API supported reports, 
> you may refer to this guide 
> . 
> Additionally, the Criteria Performance Report does not have a direct 
> counterpart in the AdWords UI. Being that it is also a single attribution 
> 
>  type 
> of report, all metrics (including those triggered by different criteria) 
> will be attributed to only one criteria which AdWords deems most relevant.
>
> Let me know if this helps and feel free to write back if you have any 
> further questions.
>
> Thanks and regards,
> Peter
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2d80720f-5f73-42de-90f1-f3524498c401%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.