Re: Problem creating App Engagement Ads

2015-10-19 Thread sebastian . lamelas
Hi Thanet,
I don't understand. You mean to say that if I can't see the Call-to-action
rendered correctly it is because I am setting app-id and app-store wrong?
I've just created some text ads and I can visualize them properly -which
means that they have app-id and app-store fields set- but I still got an
inconistent Call-to-action field in the rendered ad.
I'll send you the ad id I've just created privately.

El viernes, 16 de octubre de 2015, 10:09:44 (UTC-3), Thanet Knack 
Praneenararat (AdWords API Team) escribió:
>
> Hi Sebastian,
>
> I've got more information that if you setup app ID and app store 
> correctly, the image should render as your provided call-to-action filed 
> text.
> Could you please confirm again?
>
> Best,
> Thanet, AdWords API Team
>
> On Tuesday, October 13, 2015 at 8:45:28 PM UTC+9, sebastia...@despegar.com 
>  wrote:
>>
>> 2) Discrepancy between Call-to-action field in Text Ads and rendered ad 
>>> image. (see my first post)
>>
>> We are aware of this issue and made change to so the call-to-action text 
>>> is shown in preview. 
>>>
>> This may take a few days to a week until it gets updated.
>>>
>>
>> It still hasn't been fixed. We'll wait a couple days and give it another 
>> try!
>>
>>
>> El martes, 29 de septiembre de 2015, 13:08:55 (UTC-3), Thanet Knack 
>> Praneenararat (AdWords API Team) escribió:
>>>
>>> Hi Sebastian,
>>>
>>> Sorry for making you wait for a long time.
>>> I've just got some updates. Please see the my comments below:
>>>
>>> 1) UI crash when clicking "View full size display ad"

>>> It seems your ads that have problems with preview were created without an 
>>> app store & app id.
>>> Could you please fix them using API and see if you can preview them in 
>>> UI?
>>>  
>>>
 2) Discrepancy between Call-to-action field in Text Ads and rendered ad 
 image. (see my first post)
>>>
>>> We are aware of this issue and made change to so the call-to-action text 
>>> is shown in preview. 
>>> This may take a few days to a week until it gets updated.
>>>
>>> Best,
>>> Thanet, AdWords API Team
>>>
>>> On Tuesday, September 29, 2015 at 4:38:48 AM UTC+9, 
>>> sebastia...@despegar.com wrote:

 Hi Thanet,
 We are still facing this problem and, on top of that, we now have a 
 third problem
 (you can find the new question in this link 
 ).
 Any new from your side?
 Thanks,
 seb.

 El lunes, 14 de septiembre de 2015, 10:29:34 (UTC-3), Thanet Knack 
 Praneenararat (AdWords API Team) escribió:
>
> Hello Sebastian,
>
> Really sorry for keeping you waiting.
> I'm chasing this issue with the engineering team, but unfortunately, I 
> haven't got update from them yet.
>
> Cheers,
> Thanet, AdWords API Team
>
> On Monday, September 14, 2015 at 9:54:41 PM UTC+9, 
> sebastia...@despegar.com wrote:
>>
>> Hello Thanet,
>> Do you have any news on these issues?
>> 1) UI crash when clicking "View full size display ad"
>> 2) Discrepancy between Call-to-action field in Text Ads and rendered 
>> ad image. (see my first post)
>> Thanks again,
>> seb.
>>
>> El martes, 8 de septiembre de 2015, 8:39:11 (UTC-3), Thanet Knack 
>> Praneenararat (AdWords API Team) escribió:
>>>
>>> Hi Sebastian,
>>>
>>> Unfortunately, I haven't got update back from the engineering team.
>>> I'll let you know once I get update.
>>>
>>> Best,
>>> Thanet, AdWords API Team
>>>
>>> On Tuesday, September 8, 2015 at 8:36:05 PM UTC+9, 
>>> sebastia...@despegar.com wrote:

 Hello Thanet,
 You replied to me privately on September 2nd after my private 
 response to you.
 Do you have news on this issue? I am still getting the UI crash 
 after creating TempalteAd's
 with the AdWords API.

 El miércoles, 2 de septiembre de 2015, 2:31:06 (UTC-3), Thanet 
 Knack Praneenararat (AdWords API Team) escribió:
>
> Hello Sebastian,
>
> Sorry for the delay.
> Let me check with the engineering team for this discrepancy.
>
> Could you please do *Reply privately to author *and send me your 
> campaign ID, ad group ID, and ad ID of the ad in question (especially 
> those 
> of the ad in your screenshot)?
> Thanks in advance.
>
> Best,
> Thanet, AdWords API Team
>
> On Wednesday, September 2, 2015 at 12:00:15 AM UTC+9, 
> sebastia...@despegar.com wrote:
>>
>> Is there any way I can check whether the Ads are correct or not 
>> without using the UI in AdWords web?
>> I do not know whether the UI is crashing or the Ad was 
>> incorrectly created. The second case would be rare because it should 
>> have 
>> failed while it was 

How to change bids on keyword?

2015-10-19 Thread Kanan Farzali
Hi,

I want to change bids on keywords, but it looks like it fails silently. My 
code is in PHP.

Input variables are:
1. Client ID
2. Keyword ID
3. Amount

What is wrong in this code?

public function setKeywordBidOperations($client_id, $hierarchy, 
$bidNonMicro) {
$user = new AdwordsUser();
$user->SetClientCustomerId($client_id);

$criterion = new Criterion();
$criterion->id = $hierarchy['keyword id'];

// Create biddable ad group criterion.
$adGroupCriterion = new BiddableAdGroupCriterion();
$adGroupCriterion->adGroupId = $hierarchy['adgroup id'];
$adGroupCriterion->criterion = new Criterion($hierarchy['keyword 
id']);

$bid = new CpcBid();
$bid->bid = new Money($bidNonMicro * 
AdWordsConstants::MICROS_PER_DOLLAR);

$biddingStrategyConfiguration = new BiddingStrategyConfiguration();
$biddingStrategyConfiguration->bids[] = $bid;
$adGroupCriterion->biddingStrategyConfiguration = 
$biddingStrategyConfiguration;

$operation = new AdGroupCriterionOperation();
$operation->operand = $adGroupCriterion;
$operation->operator = 'SET';

return $operation;
}

Thanks,

KF

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a8c3ca88-a138-433d-a52b-f22cf131ae9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


GEO API List for UK

2015-10-19 Thread Ceri Thomas
Hi,

I'm looking for the UK equivalent of this 
page https://developers.google.com/adwords/api/docs/appendix/cities-DMAregions 
can someone please provide a link?

Thanks,

Ceri

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5ed3b1a2-ed56-4980-ae0a-93ba866c30cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I receive ReportDownloadError.INTERNAL_SERVER_ERROR

2015-10-19 Thread Damiano Ciarla
 

Hi,

I continually receive this error when I try to recover the AdPerformace via 
the PHP SDK


[Oct 19 2015 08:25:59.00 - ERROR] POST 
/api/adwords/reportdownload/v201509 HTTP/1.1

User-Agent: curl, gzip

Host: adwords.google.com

Accept: */*

Accept-Encoding: gzip

Authorization: Bearer 
ya29.EQJWmsBTgXFQJSCD4Op7AbAdaLzayk0Da-LO9Ty16bCyaTGzA0vZWqzxCTZo5U9VjgDIMA

developerToken: -5xA5uPz81bnaAipVM5lLw

clientCustomerId: 4487690492

skipReportHeader: true

skipColumnHeader: true

skipReportSummary: true

includeZeroImpressions: false

Content-Length: 1054

Expect: 100-continue

Content-Type: multipart/form-data; 
boundary=b2c73d1bb22d38b5


Parameters:

__rdxml: 



  

Impressions

Clicks

Ctr

AverageCpc

AverageCpm

Cost



  Id

  IN

  68468525841





  Status

  IN

  ENABLED

  PAUSED

  DISABLED





  20150313

  20151018



  

  Ad performance report #5624a915b7feb

  AD_PERFORMANCE_REPORT

  CUSTOM_DATE

  XML

  false




Response Code: 500

Error Message: Report download failed. Underlying errors are 

Type = 'ReportDownloadError.INTERNAL_SERVER_ERROR', Trigger = 'Unexpected 
Internal Server Error', FieldPath = ''.



Can someone please help me?

Thanks a lot

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b13e5216-026f-4008-b647-574fe4bb2ab3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: The SoapListenerExtension class is not loaded. The most possible cause for this error is that you haven't registered Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension under confi

2015-10-19 Thread Anash P. Oommen (AdWords API Team)
Hi Senthil,

When you add a reference to App.config, the binary it is referring to (in 
this case, Google.Ads.Common.dll) should be in the path where it can be 
loaded. The easiest fix would be to:

- Install Google.Ads.Common and Google.AdWords assemblies into GAC using 
gacutil command. (or copy it to the folder where SQL server binary resides)
- Modify the App.config of SQL server to add the necessary configuration in 
it. http://www.sqlis.com/post/Where-is-my-appconfig-for-SSIS.aspx has 
instructions on how to do that.

Cheers
Anash P. Oommen,
AdWords API Advisor.

On Monday, October 19, 2015 at 8:01:06 AM UTC-4, Senthil Palaniswami wrote:
>
> Team, 
>  
> Anyone has the same problem ?? I am keep getting the same error after 
> adding the SOAP config in the C# code. Please assist. Thx ... 
>  
>
> On Thursday, October 15, 2015 at 10:30:23 PM UTC-4, Senthil Palaniswami 
> wrote:
>
>> I am using the API in SQL server SSIS Package in script task with C# to 
>> get the data into SQL Server database. 
>>  
>> the same code is working good in C# Console application with App.Config 
>> file, but it is not working in SSIS.  Please assist.
>>  
>>  
>> The SoapListenerExtension class is not loaded. The most possible cause 
>> for this error is that you haven't registered 
>> Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension under 
>> configuration/system.web/webServices/soapExtensionTypes in your your 
>> App.config or Web.config. See the sample App.config for details on how to 
>> register soap extensions.
>>  
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/92a2b3a3-5a99-4b7a-84dd-73c792f7c8db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: The SoapListenerExtension class is not loaded. The most possible cause for this error is that you haven't registered Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension under confi

2015-10-19 Thread Senthil Palaniswami
Team, 
 
Anyone has the same problem ?? I am keep getting the same error after 
adding the SOAP config in the C# code. Please assist. Thx ... 
 

On Thursday, October 15, 2015 at 10:30:23 PM UTC-4, Senthil Palaniswami 
wrote:

> I am using the API in SQL server SSIS Package in script task with C# to 
> get the data into SQL Server database. 
>  
> the same code is working good in C# Console application with App.Config 
> file, but it is not working in SSIS.  Please assist.
>  
>  
> The SoapListenerExtension class is not loaded. The most possible cause for 
> this error is that you haven't registered 
> Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension under 
> configuration/system.web/webServices/soapExtensionTypes in your your 
> App.config or Web.config. See the sample App.config for details on how to 
> register soap extensions.
>  
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fee35a92-22c7-4ae1-8382-32b763a92e7a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


finding out the google account linked to the adwords api

2015-10-19 Thread Vlad Dogarescu
Hello,

I am working on an application that was set up by somebody else.

In the php library in the auth.ini file, i have the client_id, 
client_secret and developerToken .

How can i find out the actual email address that was used to create these ?

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2654bb38-0fa2-4bfb-96bf-0dd67be2069a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Доступ к API

2015-10-19 Thread dmrotmailforadw

Добрый день

Идентификатор клиента: 685-599-7659

Моя заявка на получение доступа находиться в статусе "В ожидании одобрения" 
с начала 2014 года. Когда уже будет вынесено решение?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f20fb41a-ca32-4615-a3c3-7ae9cb1c9392%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Mobileapp name in Placement performance

2015-10-19 Thread Tiana S.
Hi there,

I see mobile apps returned in the Placement performance report, but as 
follows: 
mobileapp::1-[id_removed]

Is there any way to get the Mobile app's Name instead?

Thanks,

Tiana

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e9844952-5ebe-4f8d-ace2-812e869b0914%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ConversionTrackerService v201506

2015-10-19 Thread Le Le
Hi,

In version 201502, I get *conversionValue *from  *ConversionTracker.stats. *But 
the *ConversionTracker.stats* has been removed for v201506.

So, how to get *conversionValue *by *ConversionTrackerService *in version 
201506 ?

On Wednesday, July 15, 2015 at 11:04:47 PM UTC+7, Anthony Madrigal wrote:
>
> Hi Sandeep,
>
> The *ConversionTracker.stats* has been removed for v201506. Attributes 
> *mostRecentConversionQueryDate* and *lastConversionPingTime* have been 
> added at the ConversionTracker level instead.
>
> For more information on what changes were made in v201506, visit the Release 
> Notes  reference 
> page.
>
> 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3dd5e3b0-5c52-46e6-8c20-f9902b205107%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is BatchJobService compatible with Shopping Campaigns?

2015-10-19 Thread AdWordsApiUser
The XSD schema contains the types that let me submit a Shopping Campaign 
(Product Group addition etc.) request, but all the operations in the Job 
fail with the error 'CAMPAIGN_TYPE_NOT_COMPATIBLE_WITH_PARTIAL_FAILURE' 

I wrote an elaborate splitting algorithm to break up Product group changes 
into legal chunks of 5000 for the previous versions of the API and was 
hoping to get rid of it :)

The BatchJobService rocks, BTW.

Cheers,
MG

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/60c7be50-10d6-47eb-a7f9-0044fd50d6cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Video Ads - How to pull metrics from Adwords API.

2015-10-19 Thread Umesh Dengale
Hello,

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 new VIDEO_PERFORMANCE_REPORT 

 will give statistics for your account's upgraded AdWords for Video 
campaigns.

The AdWords API does not support creating or updating video campaigns. 
 Please check release notes 
 for complete 
lists of changes and added features. Please refer to the AdWords API blog 
 for any updates or 
announcements.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/51a36a28-531f-4607-b9ef-81d8d543%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I set enhanced CPC via the API

2015-10-19 Thread Anthony Madrigal
Hi Irfan,

Unfortunately, there is no way to use a BiddingStrategyType of a shared 
type in non-shared context or use a BiddingStrategyType of a non-shared 
type in a shared context. If you attempt to do so, you will get an 
INVALID_ANONYMOUS_BIDDING_STRATEGY_TYPE 

 error.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/31d74d7e-6361-4997-89b2-279dae01301d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Get list of verticals

2015-10-19 Thread Tiana S.
Hi,

When I programmatically try to fetch the verticals I get "The requested URL 
was not found on this server.".
Normally a list of verticals could be found 
at https://developers.google.com/adwords/api/docs/appendix/verticals, but 
when I try to go there now it keeps redirecting me to the 
affinity_categories page.

Have the verticals been removed with the new version?

Thanks,

Tiana

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/050ab420-1710-495f-96ab-87b174ab6735%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Video Ads - How to pull metrics from Adwords API.

2015-10-19 Thread Justin Coon
Thank you AdWords and API team for listening to your customers needs and
responding appropriately

Justin Coon
Software Architect
Campaignium

On Mon, Oct 19, 2015 at 8:24 AM, Umesh Dengale <
adwordsapiadvisor+um...@google.com> wrote:

> Hello,
>
> 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 new VIDEO_PERFORMANCE_REPORT
> 
>  will give statistics for your account's upgraded AdWords for Video
> campaigns.
>
> The AdWords API does not support creating or updating video campaigns.
> Please check release notes
>  for complete
> lists of changes and added features. Please refer to the AdWords API blog
>  for any updates or
> announcements.
>
> 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 a topic in the
> Google Groups "AdWords API Forum" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/adwords-api/-M29qu5PdE0/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> adwords-api+unsubscr...@googlegroups.com.
> Visit this group at http://groups.google.com/group/adwords-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/adwords-api/51a36a28-531f-4607-b9ef-81d8d543%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CAEtEPZuL0L19dqaxWqzB28FU6OutLSfpQyN8%2B_WYV3z3A9tSrA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: AD_PERFORMANCE_REPORT vs Display Ads in "Ads in mobile apps" campaigns

2015-10-19 Thread Josh Radcliff (AdWords API Team)
Hi,

The fix for blank AdType 

 has 
been released. Please try your report request again and let me know if you 
see any issues.

Cheers,
Josh, AdWords API Team

On Thursday, April 9, 2015 at 8:38:16 PM UTC-4, Kristopher Windsor wrote:
>
> Hi,
>
> A sample ad ID is 66109351408, and it's in adgroup 20079638368.
>
> I'll try your suggestions.
>
> Thanks,
>
> On Thursday, April 9, 2015 at 2:02:29 PM UTC-7, Josh Radcliff (AdWords API 
> Team) wrote:
>>
>> Hi,
>>
>> Have you tried using *ImageCreativeName* and/or *ImageAdUrl*? The 
>> *Headline* field corresponds to the headline attribute of TextAd 
>> ,
>>  
>> so it won't be populated if the ad is not of type *TextAd*.
>>
>> Regarding the blank *AdType* field, could you send over a sample ad 
>> group ID and ad ID I could investigate?
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Wednesday, April 8, 2015 at 7:37:41 PM UTC-4, Kristopher Windsor wrote:
>>>
>>> Hi,
>>>
>>> I have found that Display Ads -- the ads in campaigns with subtype "Ads 
>>> in mobile apps" -- do not appear correctly in this report.
>>>
>>> I am using the AD_PERFORMANCE_REPORT report via v201409, php, CSV format.
>>>
>>>- Text Display Ads -- the headline is: 
>>> *Display Ad created 9/15/14 - Play With Millions *Instead of just:
>>>*Play With Millions*
>>>- Image Display Ads -- the Ad type is blank (not "Image ad" or 
>>>"Display ad")
>>>
>>> Is this expected? How should I get the actual headline for text Display 
>>> ads, and figure out which ads are image Display ads?
>>>
>>> Thanks,
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/03a0bb71-796f-417f-8b29-b1cf81857e58%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Как получить стандартный доступ к api

2015-10-19 Thread alexey ubaev
Здравствуйте.
мне необходимо создать около 300 тысяч объявлений и создать робота, для 
автоматической корректировки этих объявлений.
для этого я хочу получить стандартный допуск к api.
только я не нашел, ни одной рабочей формы, для отправки заявки.
как мне поступить?
и я совсем не понял, за что на меня могут налагаться штрафы?
приведите пожалуйста пример штрафов которые могут быть, при создании и 
изменении большого количества объявлений, спасибо.

И если заявка будет рассматриваться около двух недель, я бы хотел получить 
еще ответ на этот вопрос

Мне не хватает операций для заливки всех объявлений, могу ли я как то 
обойти это ограничение?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/262c1ae0-1d71-4d25-84bf-1b30111d886e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ConversionTrackerService v201506

2015-10-19 Thread Anthony Madrigal
Hi,

In order to get equivalent fields for conversionValues in v201506 and 
v201509, you can use the mostRecentConversionDate and 
lastReceivedRequestTime 

 of 
the ConversionTracker.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ecfeb99a-a6c7-4f21-9d42-2199badbcb2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AgeRange performance report returning multiple rows even though no other segmentation field is selected

2015-10-19 Thread Tiana S.
Hi all,

According to the documentation, you can get multiple rows returned for an 
ageRange when you request another segmentation field. But when only 
selecting Criteria and some other metrics I also get multiple rows 
returned: 
SELECT+Criteria,Clicks,Impressions,Cost+FROM+AGE_RANGE_PERFORMANCE_REPORT+
WHERE+Impressions > 0

I would expect to see only a single row per ageRange returned.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9bfdb1f0-bce6-4586-98bc-462acff82674%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I set enhanced CPC via the API

2015-10-19 Thread Irfan Rafiq
Thanks Anthony for your prompt response.

How can I set enhanced CPC on a campaign level with manual CPC or 
TARGET_SPEND without using flexible bid strategy?  Within AdWords editor I 
can set "enhanced cpc" on my campaigns which does not make a flexible bid 
strategy.

Thanks
Irfan

On Monday, October 19, 2015 at 2:53:19 PM UTC+1, Anthony Madrigal wrote:
>
> Hi Irfan,
>
> Unfortunately, there is no way to use a BiddingStrategyType of a shared 
> type in non-shared context or use a BiddingStrategyType of a non-shared 
> type in a shared context. If you attempt to do so, you will get an 
> INVALID_ANONYMOUS_BIDDING_STRATEGY_TYPE 
> 
>  error.
>
> Regards,
> Anthony
> AdWords API Team
>

-- 

--
This is an e-mail from the company JUST EAT plc. This e-mail may contain 
confidential information and/or privileged or personal advice. This e-mail 
is intended for the addressee(s) stated above only. If you receive this 
e-mail by mistake, please return it to JUST EAT plc without producing, 
distributing or retaining copies hereof. 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9b8946c7-c9e6-4d9b-879f-9c135a25667f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BiddingErrors.INVALID_BID occurring sporadically since 25.07.2015

2015-10-19 Thread Francesco Puntar
Hi Michael, that's still happening for me with v201509, what was the 
outcome, was the bug fixed? which bid are we supposed to use?
Thanks,
Francesco

On Tuesday, 28 July 2015 15:49:33 UTC+1, Michael Cloonan (AdWords API Team) 
wrote:

> Hello,
>
> I've filed a bug with the engineering team, and I will keep this post 
> updated as I find out more information. Thanks for the reports and the 
> detailed information, everyone.
>
> Regards,
> Mike, AdWords API Team
>
> On Monday, July 27, 2015 at 9:23:27 AM UTC-4, 
> peter.r...@smarter-ecommerce.com  wrote:
>>
>> Hi 
>>
>> We experience sporadically occurring BiddingErrors.INVALID_BID errors 
>> when we send product partitions. First sight: 
>> 2015-07-25T02:31:05.650+02:00
>> Seen 23 times since then. Seen across multiple accounts.
>>
>> It looks like, that *sometimes* the API does not accept a bid for 
>> partitions (see examples below). The error is not reproducible. It's not 
>> related to threading problems. We've got a simple single-threaded unit test 
>> that sporadically fails with this error (~1 out of 10-15 runs).
>> Adwords Api version is v201506. Java API version is 2.2.0.
>>
>> Thanks! 
>> Peter
>>
>> 2015-07-27 12:41:07,521 1.1.1.RELEASE  WARN task-scheduler-16 
>> AdWordsServiceClient.soapXmlLogger - SOAP Request:
>> http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsd="
>> http://www.w3.org/2001/XMLSchema; xmlns:xsi="
>> http://www.w3.org/2001/XMLSchema-instance;>
>> 
>> https://adwords.google.com/api/adwords/cm/v201506; 
>> soapenv:mustUnderstand="0">
>> false
>> false
>> 
>> 
>> 
>> 
>> https://adwords.google.com/api/adwords/cm/v201506
>> ">
>> 
>> ADD
>> https://adwords.google.com/api/adwords/cm/v201506; 
>> xsi:type="ns2:BiddableAdGroupCriterion">
>> X
>> 
>> -2
>> SUBDIVISION
>> 
>> 
>> uco
>> 
>> 
>> 
>> 
>> 
>> 80
>> 
>> 
>> 
>> 
>> 
>>
>> 
>>
>> https://adwords.google.com/api/adwords/cm/v201506;>
>> 00051bd8fdb71fa00ac4006bca04b828
>> AdGroupCriterionService
>> mutate
>> 0
>> 248
>> 
>>
>> [*BiddingErrors.INVALID_BID @ 
>> operations[0].operand.biddingStrategyConfiguration.bids; 
>> trigger:'CpcBid{bid=0.80, contentBid=null, cpcBidSource=null}',*
>>  ..
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2af2e12c-7bd0-4d7d-a972-b5f85368321e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I set enhanced CPC via the API

2015-10-19 Thread Irfan Rafiq
Hi Anthony,

Sure, hope this helps

The screenshow below is taken from AdWords UI. I would like to set enhanced 
CPC. along with either manual bids (1) or maximise clicks to target budget 
(2).

According to the API, the bidding strategy type and scheme for these 3 bid 
types are:

(1) MANUAL_CPM : ManualCpcBiddingScheme 

(2) TARGET_SPEND : TargetSpendBiddingScheme 

ENHANCED_CPC : EnhancedCpcBiddingScheme 


TARGET_SPEND & ENHANCED_CPC are both shared bidding strategies, so 
therefore to create this I first need to create a shared bidding strategy 
-> mutate and then get the newly created bidding ID. Upon campaign creation 
I set the bidding strategy ID. This works fine, however this makes a 
flexible bid strategy which I am trying to avoid. You can see in the 
screenshot below it is possible to set these values without creating a 
flexible bid strategy.  The screenshot below is from AdWords web UI. I am 
also able to select enhanced CPC bidding via AdWords Editor. When I set 
enhanced CPC via editor it also does not create a flexible bid strategy. If 
AdWords editor is using the same API then surely there must be a way to set 
this without having explicitly create a shared budget?





AdWords Editor:



Many Thanks
Irfan


On Monday, October 19, 2015 at 9:54:48 PM UTC+1, Anthony Madrigal wrote:

> Hi Irfan,
>
> Could you please clarify what you mean by an Enhanced CPC with Manual CPC 
> or Target Spend? If you have any screenshots, that should help me get a 
> better understanding of what you are trying to do.
>
> Thanks,
> Anthony
> AdWords API Team
>

-- 

--
This is an e-mail from the company JUST EAT plc. This e-mail may contain 
confidential information and/or privileged or personal advice. This e-mail 
is intended for the addressee(s) stated above only. If you receive this 
e-mail by mistake, please return it to JUST EAT plc without producing, 
distributing or retaining copies hereof. 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d810d18f-7d88-4936-98a2-53aa926ceba7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I set enhanced CPC via the API

2015-10-19 Thread Irfan Rafiq
Correction, MANUAL_CPM  should be MANUAL_CPC 
: https://developers.google.com/adwords/api/docs/guides/bidding

On Monday, October 19, 2015 at 10:31:13 PM UTC+1, Irfan Rafiq wrote:
>
> Hi Anthony,
>
> Sure, hope this helps
>
> The screenshow below is taken from AdWords UI. I would like to set 
> enhanced CPC. along with either manual bids (1) or maximise clicks to 
> target budget (2).
>
> According to the API, the bidding strategy type and scheme for these 3 bid 
> types are:
>
> (1) MANUAL_CPM : ManualCpcBiddingScheme 
> 
> (2) TARGET_SPEND : TargetSpendBiddingScheme 
> 
> ENHANCED_CPC : EnhancedCpcBiddingScheme 
> 
>
> TARGET_SPEND & ENHANCED_CPC are both shared bidding strategies, so 
> therefore to create this I first need to create a shared bidding strategy 
> -> mutate and then get the newly created bidding ID. Upon campaign creation 
> I set the bidding strategy ID. This works fine, however this makes a 
> flexible bid strategy which I am trying to avoid. You can see in the 
> screenshot below it is possible to set these values without creating a 
> flexible bid strategy.  The screenshot below is from AdWords web UI. I am 
> also able to select enhanced CPC bidding via AdWords Editor. When I set 
> enhanced CPC via editor it also does not create a flexible bid strategy. If 
> AdWords editor is using the same API then surely there must be a way to set 
> this without having explicitly create a shared budget?
>
>
>
> 
>
>
> AdWords Editor:
>
>
> 
>
> Many Thanks
> Irfan
>
>
> On Monday, October 19, 2015 at 9:54:48 PM UTC+1, Anthony Madrigal wrote:
>
>> Hi Irfan,
>>
>> Could you please clarify what you mean by an Enhanced CPC with Manual CPC 
>> or Target Spend? If you have any screenshots, that should help me get a 
>> better understanding of what you are trying to do.
>>
>> Thanks,
>> Anthony
>> AdWords API Team
>>
>
-- 

--
This is an e-mail from the company JUST EAT plc. This e-mail may contain 
confidential information and/or privileged or personal advice. This e-mail 
is intended for the addressee(s) stated above only. If you receive this 
e-mail by mistake, please return it to JUST EAT plc without producing, 
distributing or retaining copies hereof. 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/44b1d3f1-62ff-4085-aa61-1108b621c7be%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is BatchJobService compatible with Shopping Campaigns?

2015-10-19 Thread Umesh Dengale
Hi MG,

The BatchJobService does not support AdGroupCriterionOperations on ad 
groups of shopping campaigns and will get 
CAMPAIGN_TYPE_NOT_COMPATIBLE_WITH_PARTIAL_FAILURE 
if try to submit such operation on the shopping campaign. Please check out 
the limitation 
 
section 
of BatchJobService 
 guide.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b84b86c1-f7fe-45b9-b569-2662bde95412%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: finding out the google account linked to the adwords api

2015-10-19 Thread Anthony Madrigal
Hello,

There is no way to get the email address associated to those fields. I 
suggest getting in touch with your account manager and ask them to contact 
us. Once you do so, we can look it up for you.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e64cf139-6487-48d8-9e38-28c5a661f690%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: The SoapListenerExtension class is not loaded. The most possible cause for this error is that you haven't registered Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension under confi

2015-10-19 Thread Anash P. Oommen (AdWords API Team)
Hi Senthil,

Where is Google.Ads.Common.dll located? It either has to be in the same 
folder as sqlserver exe or in one of the locations pointed to by PATH 
variable. If you choose to put this in GAC instead, then your App.config 
path should contain the fully qualified assembly name for 
Google.Ads.Common.dll in the App.config.

Cheers,
Anash

On Monday, October 19, 2015 at 3:52:44 PM UTC-4, Senthil Palaniswami wrote:
>
> thanks Anash. 
>  
> I have the below settings on the SSIS Config files (DtsDebugHost.exe, 
> ISServerExec.exe, DTExec.exe & dtshost.exe), none of them work as 
> expected.  Please assist. 
>  
> *Config: *
>  
>
> 
>
> 
>
>  
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
> priority="1" group="0"/>
>
> 
>
> 
>
> 
>
> 
>  
>  
>  
>  
> *Error: *
> The SoapListenerExtension class is not loaded. The most possible cause for 
> this error is that you haven't registered 
> Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension under 
> configuration/system.web/webServices/soapExtensionTypes in your your 
> App.config or Web.config. See the sample App.config for details on how to 
> register soap extensions.
>
> On Mon, Oct 19, 2015 at 8:23 AM, Anash P. Oommen (AdWords API Team) <
> adwordsapiadvisor+an...@google.com> wrote:
>
>> Hi Senthil,
>>
>> When you add a reference to App.config, the binary it is referring to (in 
>> this case, Google.Ads.Common.dll) should be in the path where it can be 
>> loaded. The easiest fix would be to:
>>
>> - Install Google.Ads.Common and Google.AdWords assemblies into GAC using 
>> gacutil command. (or copy it to the folder where SQL server binary resides)
>> - Modify the App.config of SQL server to add the necessary configuration 
>> in it. http://www.sqlis.com/post/Where-is-my-appconfig-for-SSIS.aspx has 
>> instructions on how to do that.
>>
>> Cheers
>> Anash P. Oommen,
>> AdWords API Advisor.
>>
>> On Monday, October 19, 2015 at 8:01:06 AM UTC-4, Senthil Palaniswami 
>> wrote:
>>>
>>> Team, 
>>>  
>>> Anyone has the same problem ?? I am keep getting the same error after 
>>> adding the SOAP config in the C# code. Please assist. Thx ... 
>>>  
>>>
>>> On Thursday, October 15, 2015 at 10:30:23 PM UTC-4, Senthil Palaniswami 
>>> wrote:
>>>
 I am using the API in SQL server SSIS Package in script task with C# to 
 get the data into SQL Server database. 
  
 the same code is working good in C# Console application with App.Config 
 file, but it is not working in SSIS.  Please assist.
  
  
 The SoapListenerExtension class is not loaded. The most possible cause 
 for this error is that you haven't registered 
 Google.Api.Ads.Common.Lib.SoapListenerExtension as a soap extension under 
 configuration/system.web/webServices/soapExtensionTypes in your your 
 App.config or Web.config. See the sample App.config for details on how to 
 register soap extensions.
  

>>> -- 
>> -- 
>> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>> 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 a topic in the 
>> Google Groups "AdWords API Forum" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/adwords-api/T1aUzUoLh9M/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> adwords-api+unsubscr...@googlegroups.com.
>> Visit this group at http://groups.google.com/group/adwords-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/adwords-api/92a2b3a3-5a99-4b7a-84dd-73c792f7c8db%40googlegroups.com
>>  
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

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

Re: How can I set enhanced CPC via the API

2015-10-19 Thread Anthony Madrigal
Hi Irfan,

Could you please clarify what you mean by an Enhanced CPC with Manual CPC 
or Target Spend? If you have any screenshots, that should help me get a 
better understanding of what you are trying to do.

Thanks,
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/90ac6ed2-056e-466c-96b0-79341e3da05e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Cannot get AdType of IMAGE_AD in ad-performance-report

2015-10-19 Thread Josh Radcliff (AdWords API Team)
Hi Akiko,

The fix to show AdType 

 
for template ads has been released. Please let me know if you are still 
observing this issue.

Thank you,
Josh, AdWords API Team

On Tuesday, September 1, 2015 at 1:39:17 PM UTC-4, Josh Radcliff (AdWords 
API Team) wrote:
>
> Hi Akiko,
>
> I don't have any progress to report at this time, but I'll post here as 
> soon as I do.
>
> Regarding retrieving template ads as images, you won't be able to do this 
> via reporting, but you can use AdGroupAdService 
> 
>  and 
> retrieve the TemplateAd.adAsImage 
> 
>  field.
>
> Cheers,
> Josh, 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4ec45986-577b-4955-9cea-1433d2ff2d57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Filter Campaign Type in Account Perforamnce

2015-10-19 Thread Anthony Madrigal
Hi Atul,

You could filter your Account Performance Report by search campaigns by 
using the predicate WHERE AdNetworkType1 = SEARCH 
.
 
You can use that field to segment based on network type such as Search, 
Display, Video, etc.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e23565f5-442f-4d40-a1ec-3af09fa5ced0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: GEO API List for UK

2015-10-19 Thread Umesh Dengale
Hi Ceri,

You could use the geographical targeting 
 page 
(Latest .csv (2015-10-13)) to download the geographical targets of UK.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/89202304-c05f-4427-beb6-3d4627be3b52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Как получить стандартный доступ к api

2015-10-19 Thread Umesh Dengale
Hello,

I am sorry, I can give a response in English only. In the Adwords API, 
there are two access levels *basic access* which has 10,000/per day limit 
and *standard access* which support unlimited operations per day. You can 
apply for standard access by filling out this standard access application 
 form. If you 
have any issues while submitting the standard application form then please 
let us know. Please see our rate limit 
 guide 
and rate sheet and non-compliance fees 
 guide for more 
information.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c82b1d04-cbf1-4e97-8ff8-942f1343f817%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to change bids on keyword?

2015-10-19 Thread Anthony Madrigal
Hi KF,

I do not see any issues with your snippet of code. Could you clarify what 
you mean by "it fails silently"? If you have a SOAP request and response, 
could you please send me it through *reply privately to author *so that I 
can do some further investigation?

Thanks,
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ef735751-7a89-4fbd-a40a-148f6aa7a811%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Empty CRM based user list with test account

2015-10-19 Thread jacob
Hello,

I have recently started following the ruby example for adding a CRM based 
user list. I have been using a test account with a production developer 
token that is currently pending approval. I have been able to create a list 
and see all of the lists I have created via the API. I tried to create a 
list with 1500+ entries to ensure the list was in fact being populated 
correctly by seeing its size as > 0 via the API however, it is still 
showing the list at size 0. Is this expected behavior or are there some 
caveats with test accounts that I am missing? Thank you in advance for the 
help!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c8fb8c34-fd89-4b7c-bbb2-faef91228ca4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Доступ к API

2015-10-19 Thread Umesh Dengale
Hello,

I am sorry, I can give a response in English only. 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 then I can check in with the compliance team.


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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6687000c-b8f8-4fba-8bd1-a7362f5ce009%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AgeRange performance report returning multiple rows even though no other segmentation field is selected

2015-10-19 Thread Anthony Madrigal
Hi Tiana,

The reason you may be getting multiple rows for a Criteria (age range) is 
that each of the age ranges you are seeing is associated to a specific 
campaign or adgroup. You can confirm this by adding either the CampaignId 
or AdGroupId in your report definition. Unfortunately, there is no way to 
have the report be for the total of each age range.

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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9e8f65cf-d1c3-42f9-b1ae-a2f7d0f46e46%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Filter Campaign Type in Account Perforamnce

2015-10-19 Thread Atul Kumar
Hi Guys,

I am trying to pull performance stats for only search campaigns, aggregated 
at an account level. Is there a way to filter out product listing ads from 
Account_Performance_Report? I used to use click type to do that in the past 
but now segmenting by that doesn't give me the right value for impressions. 
I was aggregating impressions by click type = headline and it would match 
the total for all search campaigns. When I do that now, it totals up to 
search impressions + PLA impressions.

Any solution would be very helpful.

Thanks,
Atul

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/16a27526-24ba-4aa6-80dc-9d53c129828c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Video Perfomance Report

2015-10-19 Thread Emiliano Martinez
Hi, everyone!

I want to download the new Video Performance Report, in the usual way we 
use to download all the other reports.
For that, I use the ReportDownloader class, that needs a ReportDefinition.
In the ReportDefinition, you must set the ReportType using the enum 
ReportDefinitionReportType.
The problem is that this enum does not have the VIDEO_PERFORMANCE_REPORT 
type :(
I cannot download the report then.
Im using v201509 of the API

Any solution is very welcome!
Thanks and regards
Emiliano 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8f6fac83-ac4d-4118-8c94-5062e7148a71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Cannot get AdType of IMAGE_AD in ad-performance-report

2015-10-19 Thread アタラ 松澤 明子
Hi Josh,

Thank you for your happy announce.
We try it.

But the thing we need most is getting the images of template ads, it is
still unable, isn't it?

Akiko

2015年10月20日火曜日、Josh Radcliff (AdWords API Team)<
adwordsapiadvisor+j...@google.com>さんは書きました:

> Hi Akiko,
>
> The fix to show AdType
> 
> for template ads has been released. Please let me know if you are still
> observing this issue.
>
> Thank you,
> Josh, AdWords API Team
>
> On Tuesday, September 1, 2015 at 1:39:17 PM UTC-4, Josh Radcliff (AdWords
> API Team) wrote:
>>
>> Hi Akiko,
>>
>> I don't have any progress to report at this time, but I'll post here as
>> soon as I do.
>>
>> Regarding retrieving template ads as images, you won't be able to do this
>> via reporting, but you can use AdGroupAdService
>> 
>>  and
>> retrieve the TemplateAd.adAsImage
>> 
>>  field.
>>
>> Cheers,
>> Josh, 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 a topic in the
> Google Groups "AdWords API Forum" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/adwords-api/f0V2w2plzQk/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> adwords-api+unsubscr...@googlegroups.com
> 
> .
> Visit this group at http://groups.google.com/group/adwords-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/adwords-api/4ec45986-577b-4955-9cea-1433d2ff2d57%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
松澤 明子
Akiko Matsuzawa

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CAM2RgC27-sVZ6ZDQbU%2B9V9stiV-qbV2h83U9rftei_c--1yTvQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Turn off "Count calls as phone call conversions" through API

2015-10-19 Thread Han Vo
Can anyone help confirming if this is possible through API?

On Friday, October 16, 2015 at 4:48:05 PM UTC-4, Han Vo wrote:
>
> I am trying to push a change to Adword to make a mobile extension to use 
> Google forwarding phone number. However I don't want to "Count calls as 
> phone call conversions". How do I turn this of when sending a CallFeedItem 
> over? I tried to setConversionTypeId(null), but it wouldn't work 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/80667c40-0c3a-4efa-9886-b4f009decfe0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ConversionTrackerService v201506

2015-10-19 Thread Le Le
Hi Anthony,

Do you have any example?

In my case, I want get 
*conversionValue, numConversionEvents, numConvertedClicks, 
mostRecentConversionDate.*

In version v201502, I can get them as following:

tracker.ConversionValue = 
adWordsConversionTracker.stats.conversionValue.microAmount / 100;

tracker.NumConversionEvents = 
adWordsConversionTracker.stats.numConversionEvents;
tracker.NumConvertedClicks = 
adWordsConversionTracker.stats.numConvertedClicks;
tracker.MostRecentConversionDate = 
adWordsConversionTracker.stats.mostRecentConversionDate;

But, in version 201506, stats has been removed. So, how to get them by 
*ConversionTrackerService *in version v201506 ?

On Monday, October 19, 2015 at 10:00:31 PM UTC+7, Anthony Madrigal wrote:
>
> Hi,
>
> In order to get equivalent fields for conversionValues in v201506 and 
> v201509, you can use the mostRecentConversionDate and 
> lastReceivedRequestTime 
> 
>  of 
> the ConversionTracker.
>
> 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/dd9fe568-89b6-44c0-9c63-70411f4c7fdb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.