Re: Negative keywords for TrafficEstimatorService

2015-12-28 Thread Mikhail Kamenev
Hello Umesh!

Response for first request (without negative keywords):
http://schemas.xmlsoap.org/soap/envelope/";>https://adwords.google.com/api/adwords/cm/v201509"; 
xmlns="https://adwords.google.com/api/adwords/o/v201509";>000528037cc40a567b82780c02d1AccountServiceget1712https://adwords.google.com/api/adwords/cm/v201509"; 
xmlns="https://adwords.google.com/api/adwords/o/v201509";>CampaignEstimateAdGroupEstimateKeywordEstimateMoney13090963.52767900699188970.0410847354972432320.953215459.0Money30477530Money1662.88628268488357960.0502146791374613625.609488561.0Money37250316

Response for second request (with one negative keyword):
http://schemas.xmlsoap.org/soap/envelope/";>https://adwords.google.com/api/adwords/cm/v201509"; 
xmlns="https://adwords.google.com/api/adwords/o/v201509";>000528037ce362f80a561850bd098a17AccountServiceget1307https://adwords.google.com/api/adwords/cm/v201509"; 
xmlns="https://adwords.google.com/api/adwords/o/v201509";>CampaignEstimateAdGroupEstimateKeywordEstimateMoney13090963.52767900699188970.0506477390968735915.618868277.5441Money22718446Money1662.88628268488357960.06190279521108310619.089727339.22055Money27766990KeywordEstimate0.00.0Money00.00.0Money0

The user interface results (don't depend of the negative keyword):
Clicks: 20.4-24.9
Impressions: 459-561
Cost: 30.00-36.00 russian roubles.




понедельник, 28 декабря 2015 г., 19:14:01 UTC+3 пользователь Umesh Dengale 
написал:
>
> Hello,
>
> Could you provide me privately the TrafficEstimatorService response for 
> the negative keyword and the UI results for the negative keywords? Just 
> click *Reply privately to author* in the forum when responding. Don't 
> forget to remove the developer token in the output.
>
> Thanks,
> Umesh, 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/3fc0dc10-f2f0-4a77-ba87-93e63df24093%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: adwords-axis-2.8.0.jar transitive dependencies cause Caused by: java.lang.ClassCastException: com.google.common.io.ByteSource$ByteArrayByteSource cannot be cast to com.google.common.io.InputSuppli

2015-12-28 Thread Andy Lin
Yes, it works after I excluded guava-jdk5-#.jar from all the google api. 
 My project also use google drive, oauth-client, and api-clients.  Some of 
these have the transitive dependency on guava-jdk5-#.jar

This is a example how I did it.

compile('com.google.api-client:google-api-client:1.20.0'){

exclude group: 'com.google.guava', module: 'guava-jdk5' 

}

compile('com.google.oauth-client:google-oauth-client-jetty:1.20.0'){

exclude group: 'com.google.guava', module: 'guava-jdk5' 

}

compile('com.google.apis:google-api-services-drive:v2-rev170-1.20.0'){

exclude group: 'com.google.guava', module: 'guava-jdk5' 

}

On Monday, December 14, 2015 at 8:58:24 AM UTC-5, Andy Lin wrote:
>
> In my build.gradle, I have those 2 adword api jars as dependencies, when I 
> pool the results from the batchJobs, I get the following execptions, which 
> versions of guava-#.jar and guava-jdk5-#.jar I should explicit specify in 
> my build.gradle?  It seems like transitive jar dependencies' version 
> conflict problems.  thanks for your answer
>
> compile('com.google.api-ads:ads-lib:2.8.0')
> compile('com.google.api-ads:adwords-axis:2.8.0')
>
>  if (batchJob.getDownloadUrl() != null && 
> batchJob.getDownloadUrl().getUrl() != null) {
> BatchJobMutateResponse mutateResponse =
> 
> batchJobHelper.downloadBatchJobMutateResponse(batchJob.getDownloadUrl().getUrl());
> System.out.printf("Downloaded results from %s:%n", 
> batchJob.getDownloadUrl().getUrl());
> for (MutateResult mutateResult : 
> mutateResponse.getMutateResults()) {
>   String outcome = mutateResult.getErrorList() == null ? 
> "SUCCESS" : "FAILURE";
>   System.out.printf("  Operation [%d] - %s%n", 
> mutateResult.getIndex(), outcome);
> }
>   }
>  
>
>
> Caused by: java.lang.ClassCastException: 
> com.google.common.io.ByteSource$ByteArrayByteSource cannot be cast to 
> com.google.common.io.InputSupplier
> at 
> com.google.common.io.MultiInputStream.advance(MultiInputStream.java:65) 
> ~[guava-jdk5-13.0.jar:na]
> at 
> com.google.common.io.MultiInputStream.(MultiInputStream.java:44) 
> ~[guava-jdk5-13.0.jar:na]
> at 
> com.google.common.io.ByteSource$ConcatenatedByteSource.openStream(ByteSource.java:653)
>  
> ~[guava-19.0-rc2.jar:na]
> at 
> com.google.api.ads.adwords.axis.utils.AxisDeserializer.buildWrappedInputStream(AxisDeserializer.java:160)
>  
> ~[adwords-axis-2.8.0.jar:na]
> at 
> com.google.api.ads.adwords.axis.utils.AxisDeserializer.deserializeBatchJobMutateResults(AxisDeserializer.java:113)
>  
> ~[adwords-axis-2.8.0.jar:na]
> at 
> com.google.api.ads.adwords.axis.utils.v201509.batchjob.BatchJobHelper.downloadBatchJobMutateResponse(BatchJobHelper.java:101)
>  
> ~[adwords-axis-2.8.0.jar:na]
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/92ae31b8-1e89-46ee-9e18-fd53dbbe43db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Failed to refresh access token: invalid_client

2015-12-28 Thread Umesh Dengale
Hello,

Could you verify that you followed all steps given in the OAuth2.0 guide 
 for 
.NET library?  Please recreate the client id and client secret and generate 
refresh token using new client id and client secret key and update the 
web.config file. Please check out the OAuth2.0 guide 
 for 
.NET library for more details. If still issue is not resolved then provide 
the steps you followed and error message.

Thanks,
Umesh, 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/c202f1fa-94e9-46ea-be96-2df5dc4523f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: new to adwords api

2015-12-28 Thread Anthony Madrigal
Hello Mhamad,

Please check out this guide on setting up web applications 
 since 
the examples provided include PHP. Additionally, you can see find the PHP 
client library examples 
 
to 
show you ways to use the API using PHP. 

Regards,
Anthony
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/aa5f2da4-bf90-4acc-817a-2ab09698cefe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: changing automatic placement to managed

2015-12-28 Thread Umesh Dengale
Hi Stas,

You could add bid on a placement to your ad group which converts it to a 
*managed 
placement*.

To add a placement to your ad group, issue an AdGroupCriterionService.mutate 

 request 
with an *ADD* operation where the *operand* is a BiddableAdGroupCriterion 

 with:

   - adGroupId set
   - criterion = a Placement 
   

with url 
   

 set 
   to the URL you want to target (no need to specify an ID here)
   - either:
  - biddingStrategyConfiguration 
  

 = 
  a *BiddingStrategyConfiguration* containing your bids *OR*
  - bidModifier 
  

 = 
  your bid modifier
   
Thanks,
Umesh, 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/fb6a3aa3-e5af-4bc8-8a34-1189b816577a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Are these 3 columns available "ConvertedClicks", "ConversionsManyPerClick" and "ConversionValue" in Ad Peforamnce Report for all google account?

2015-12-28 Thread Umesh Dengale
Hi Torres,

In AdWords API v201506,  the ConvertedClicks 

, ConversionValue 

, ConversionsManyPerClick 

 fields 
are available in AD_PERFORMANCE_REPORT. The report will not contain data 
for these columns and will not through an error if conversion tracking is 
not set for the AdWords account. In AdWords API v201509, the 
*ConversionsManyPerClick* report field is removed and you need to use the 
Conversions 

 field 
instead.  Please check conversion reporting changes 

 section 
of release notes  
for 
more details.

Thanks,
Umesh, 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/00cbfcef-2d43-4085-a5fb-e75bd55ae5c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Display stats at the ad id level?

2015-12-28 Thread Umesh Dengale
Hi Scott,

The URL_PERFORMANCE_REPORT.Url 

 field 
gives statistics aggregated at the URL and criterion level. Currently there 
is no field in the AD PERFORMANCE REPORT or any other reports which gives 
above-mentioned information at ad level. 
One workaround could be to add AD_PERFORMANCE_REPORT.KeywordId 

 cross-references to the CRITERIA_PERFORMANCE_REPORT.

Thanks,
Umesh, 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/5d097e32-948d-4305-9711-27c26cb76a2b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to implement remarketing function with option "Visitors of a page who did not visit another page"

2015-12-28 Thread Nadine Sundquist (AdWords API Team)
Hello Phu,

You're starting to get into more advanced usage, so you'll want to check 
out our guide on rule based ramarketing lists. The section you'll want to 
focus on is Using built-in remarketing tag parameters 
.
 
In that section, it shows a piece of code where there's a rule saying that 
the URL *CONTAINS *a string. In your case, you would want to also add a 
*NOT_CONTAINS 
*rule for specific URLs. The *op* field in StringRuleItem 

 shows 
the kinds of operators allowed in rules.

Regards,
Nadine, AdWords API Team

On Monday, December 28, 2015 at 12:03:30 AM UTC-5, take wrote:
>
> Dear AdWords API Team,
>
> Based on your guides, 
> https://developers.google.com/adwords/api/docs/guides/remarketing#remarketing-to-visitors-of-your-website,
>  
> we have implemented option "Visitors of a page"
>
> But with option "Visitors of a page who did not visit another page", we 
> don't see explanation or sample codes in guides.
>
>
> Maybe we do not understand clearly. Please help me
>
>
> Thanks & Best regards,
>
> Phu.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7dc5d65e-ee8d-43a7-90ae-10ac253aad03%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need Adwords API document or code sample to implement function "All users of an app" of group function "New mobile app user list"

2015-12-28 Thread Nadine Sundquist (AdWords API Team)
Hello,

You may find our guide on Increasing Mobile App Engagement 

 
helpful. There's a section in that guide about Audience Targeting 
.
 
The section mentions that if you have an app in Google Play, then you would 
need to link your account to Google Play. There are links in this guide on 
how to set that up. 

Cheers,
Nadine, AdWords API Team

On Sunday, December 27, 2015 at 11:48:54 PM UTC-5, take wrote:
>
>
> Dear Adwords API team,
>
> I'm building fuction *"All users of an app" *of group function* "New 
> mobile app user list"* for my company and I use document: 
> https://developers.google.com/adwords/api/docs/guides/remarketing#remarketing-to-visitors-of-your-website
>  but I can't find any information about function *"All users of an app" *of 
> group function* "New mobile app user list" *above, please:
>
> *1. Supply Adwords API document about function "All users of an app" *of 
> group function
>
> * "New mobile app user list"2. Supply code sample if have about about 
> function "All users of an app" *of group function* "New mobile app user 
> list"*
>
> Function *"All users of an app" *of group function* "New mobile app user 
> list"* which I'm building matching on Google Adwords at image below.
>
>
> Thank Adwords API team so much.
>
>
>
>
> 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/1db005fd-fb34-49b4-88a2-e88f7d29f6f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: question about shared exclusion list

2015-12-28 Thread Umesh Dengale
Hi Stas,

The AdWords API v201509 supports TrueView campaigns that have migrated from 
AdWords for video, and several reports now include statistics and new 
metrics for these campaigns. The AdWords API *reports* support the video 
campaigns data. The AdWords API *services* do not support the video 
campaigns and above mentioned updates are not supported using the services. 
 The video and multi-channel reporting changes 
 section 
of the release notes covers the video campaign related changes. Please 
check release notes 
 for complete 
lists of changes and added features. The AdWords product side (UI) support 
video campaign. You could find out more in the AdWords community 

.

Thanks,
Umesh, 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/0acb40d4-7e2b-4eaa-a573-7a015fe50b6d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to get to know over the google api if a keyword is showing an ad right now?

2015-12-28 Thread Anthony Madrigal
Hello,

There is currently no way to see if your ads or keywords are serving using 
the AdWords API. To find out whether it is possible through the UI, I 
suggest contacting the AdWords Community Forum 

.

Regards,
Anthony
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/ff7826df-5120-4991-9df1-7525d38fec12%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ValueTrack parameters in the Youtube text annotation field?

2015-12-28 Thread Umesh Dengale
Hello,

The AdWords API reports (v201509) does not have field to get the ValueTrack 
parameters populated from a video ad's text annotation field. 

Regards,
Umesh, 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/8aa7cef8-86ff-4e58-a493-9882eb7e22a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Negative keywords for TrafficEstimatorService

2015-12-28 Thread Umesh Dengale
Hello,

Could you provide me privately the TrafficEstimatorService response for the 
negative 
keyword and the UI results for the negative keywords? Just click *Reply 
privately to author* in the forum when responding. Don't forget to remove 
the developer token in the output.

Thanks,
Umesh, 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/61b3df01-fe5b-4f7d-a562-db6360b946da%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: shopping keywords + dest.urls

2015-12-28 Thread Anthony Madrigal
Hi Dennis,

Hope all is well. 

   1. Can you get FinalUrls in any of the reports for shopping? 
   *Final Urls are available through the Product Partition Report 
   
.*
   2. Is there any way to get landing pages which were clicked in shopping 
   campagins? Even without the keywords?
   *There does not appear to be a way to get the landing pages of shopping 
   campaigns.*
   3. Is Google working on getting FinalUrls in 
   SEARCH_QUERY_PERFORMANCE_REPORT reports (for shopping)?
   *Unfortunately, I cannot say whether or not Final Urls will be available 
   for shopping campaigns in the Search Query Performance Report, but please 
   check our blog 
    regarding 
   any announcements.*

Cheers,
Anthony
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/4b4756c0-0312-4224-9742-9de122e1f28d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Tracking template with auto-tagging?

2015-12-28 Thread Anthony Madrigal
Hi Scott,

This type of question seems better suited for the AdWords Community Forum 
. 
Please post your question there and you should be able to get your issue 
resolved.

Cheers,
Anthony
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/8e9e170c-b010-4d69-88cd-b5133c608372%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Where to send a letter of complaint for a rogue agency?

2015-12-28 Thread Anthony Madrigal
Hi,

I apologize for the service you have been dealing with. Unfortunately, our 
team does not support these type of issues. You could try contacting the 
AdWords 
Community Forum 
 
to 
see what is the best way to handle this situation.

Regards,
Anthony
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/89244bb0-f235-4cf1-b3b4-d2bb2fbc2c3c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Distance segmentation using the API.

2015-12-28 Thread Anthony Madrigal
Hi Juan,

Unfortunately, I cannot comment on future features and when they will be 
released. 

You can check out our blog 
 regarding 
any updates to this feature.

Cheers,
Anthony
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/a1475922-2220-485e-81fa-af148e24274f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Unexpected RateExceededError

2015-12-28 Thread Umesh Dengale
Hello,

I apologize for the delayed response. The engineering team has identified 
an issue and fix is deployed 12/22/2015. if you experienced same issue, 
please let me know with as much detail as possible (SOAP messages, 
specifically the request id, and specific error messages). Just click *Reply 
privately to author* in the forum when responding. 

Regards,
Umesh, 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/307900ad-be62-429d-8907-87b02675eac4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Does {keyword} in the final URL equal the keyword in the ad group or the keyword the user typed?

2015-12-28 Thread Anthony Madrigal
Hello,

I suggest asking the AdWords Community Forum 
.
 
They are best suited to answer these types of questions.

Cheers,
Anthony
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/df81a1ad-1602-4347-ace5-2526ae64ffa5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Support of Universal App Campaigns

2015-12-28 Thread Anthony Madrigal
Hello,

Currently, there is no way to create video campaigns through AdWords API. 
However, you can get video statistics through reporting. The reports have 
video fields to help support this and we also added the Video Performance 
Report 

. 

Please see our Release Notes 
 for 
more information.

Cheers,
Anthony
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/717908f9-b403-4b22-81f6-43f71971c16b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Failed to refresh access token: invalid_client

2015-12-28 Thread yadygarovadt
I am using Adwords API .NET library, MCC account is linked with company's 
account, developer token has basic access. 
The OAuth client worked correctly for 14-15 days till this Monday morning 
(28.12.2015), and now I'm getting next error:
Failed to refresh access token.
{
  "error" : "invalid_client",
  "error_description" : "The OAuth client was not found."
}
I've changed OAuth credentials, generated new refresh token, but still 
getting this error. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/00c55d14-e629-4142-b7da-1abe143d25d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Are these 3 columns available "ConvertedClicks", "ConversionsManyPerClick" and "ConversionValue" in Ad Peforamnce Report for all google account?

2015-12-28 Thread Torres Lu
Hi, 

In Adwords' Ad Performance reports, there are 3 columns on conversions: 

1."ConvertedClicks", 
2. "ConversionsManyPerClick"  
3."ConversionValue"  

The questions is that:  
Are these 3 columns available for all google accounts when I ad Performance 
reports? 
Or 
Are these 3 columns only avaliable when the account using publisher 
conversion tracking 

Would it caused any api error if I request these 3 columns if the account 
does not using publisher conversion tracking? 

--
Cheers
Torres

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/73ff1885-e7c4-4e04-9c86-0dda6d956308%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Where to send a letter of complaint for a rogue agency?

2015-12-28 Thread Shack Shops
I have received an extremely poor service from an agency in the UK who 
managed my adwords campaigns for the last 3 months and now I am getting 
continuously harassed by this agency with threatening emails and phone 
calls because I terminated their services.

The agency are called addpeople.co.uk and they claim to be a google partner 
but they are basically scammers so I don't understand why they have this 
status.

I have wrote a letter of complaint which I would like to send to someone in 
google who could help me with ending their continuous harassment and to 
look at my adwords account to see hardly any work was done on the account 
and maybe can sort out this rogue agency providing such a bad service and 
extremely poor customer service.

However I am not sure where to send this letter so it gets to the correct 
person within google.

Can somebody point me in the right direction?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9f9f9d31-6c71-4275-8fa7-513818b50b2a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


changing automatic placement to managed

2015-12-28 Thread stas . frid . smedia
Hi, is there anyway to change automatic placement to be managed, can't seem 
to find how to do it because automatic placement don't have an id

Thanks, stas

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2edf5284-ae48-4f19-9144-150cc4aa895b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


question about shared exclusion list

2015-12-28 Thread stas . frid . smedia
Hi, I've got 2 types placements that i want to add to a shared exclusion 
list but unable 
 
1. youtube videos SharedCriterionService doesn't have a sub type of 
Criterion for youtube like the one in AdGroupCriterionService but still it 
doesn't allow me to add them to the list

2. anonymous links , because they don't have the url , is there anyway to 
add them by id ?

Thanks, Stas


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/12849ea5-d597-4d97-ae9d-5d26fb351647%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


new to adwords api

2015-12-28 Thread Mhamad Canaan
Hello everyone,

I am new to this API and I'm facing a lot of difficulties understanding 
some concepts, I am building a web application similar to adstage and want 
to make users able to link to their Adwords accounts through my web 
application, but I don't understand how to do it, with the googleads 
library or google apiclient library? this is the first problem. can someone 
help me please? second problem is that I found that the developer.google 
explains the steps of building the web application using only java language 
but what i want is the php language instead so is there anyway to translate 
the steps they wrote into php?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/73bc3dcf-a9a3-469a-98da-815608ed09a7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is it possible to get to know over the google api if a keyword is showing an ad right now?

2015-12-28 Thread guy
There is a way in the UI to see if an ad/Keyword is displayed right now, 
but I didn't find an API for 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/8b924b57-1344-438e-9528-59628d155a1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.