Re: Change from deleted to removed

2014-08-25 Thread adwords-pass

>
> Hi Anash,
>>
>
I tried your tip using  the fields AdGroupStatus  resp. CampaignStatus. It 
did not work. Nor with the get method and neigther wit the query method.
When I tried
 $query = 'SELECT Id,  Status, KeywordText, AdGroupId  WHERE AdGroupStatus 
!= ENABLED   ORDER BY Id';
 
 // Create paging controls.
 $offset = 0;
 $adGroupCriterionService = $user->GetAdGroupCriterionService ();
 do {
 $pageQuery = sprintf('%s LIMIT %d,%d', $query, $offset,
 AdWordsConstants::RECOMMENDED_PAGE_SIZE);
 // Make the query request.
 $page = $adGroupCriterionService->query($pageQuery);

I get an error has occurred: [SelectorError.INVALID_PREDICATE_FIELD_NAME @ 
query; trigger:'AdGroupStatus'].

Seems there is no way around doing it on my own.




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6d4119a6-e8f1-4944-85a9-fa749c8e059a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT @ ImpressionShare

2014-08-25 Thread usaweb81
Hi,

 I have problem for adgroup performance report when adding 'ClickType' in 
my request.

Below is the my request:

[Aug 25 2014 05:56:56.00 - ERROR] POST 
/api/adwords/reportdownload/v201402 HTTP/1.1
User-Agent: curl, gzip
Host: adwords.google.com
Accept: */*
Accept-Encoding: gzip
Authorization: Bearer 
developerToken: 
clientCustomerId: ***
Content-Length: 1179
Expect: 100-continue
Content-Type: multipart/form-data; 
boundary=e9c042a8246949b4

Parameters:
__rdxml: 

  
AccountCurrencyCode
CampaignId
AdGroupId
Impressions
Clicks
Cost
Date
ClickType
AveragePosition
Conversions
ConversionRate
AdNetworkType1
AdNetworkType2
CostPerConversion
PercentNewVisitors
EnhancedCpcEnabled
Status

  Status
  NOT_IN
  DELETED

  
  Adgroup report #53fb0865161d0
  ADGROUP_PERFORMANCE_REPORT
  YESTERDAY
  CSV
  true


And I am testing it with my test account.

Please let me what I am doing wrong.


On Wednesday, February 15, 2012 11:20:08 AM UTC+5:30, Anash P. Oommen wrote:
>
> Hi Ekran,
>
> AdWords doesn't provide hourly breakup of ImpressionShare data any longer. 
> See 
> http://googleadsdeveloper.blogspot.in/2012/01/upcoming-changes-to-adwords-impression.html
>  for 
> details.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cd18950a-fd49-471d-b166-fc2f2f667f9e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to get Text Ads count of AdGroups

2014-08-25 Thread Aswini
Hi mm,

Thanks allot, I got Text Ad count by your procedure. but same API calls we 
should sent for each AdGroup. Now My client MCC account maintaining minimum 
200 Adgroups for each Campaign in a client. If will go through your process 
we should make 200 API calls for each campaign. And its time consuming 
process 

Thanks,
Aswini

On Thursday, August 21, 2014 11:41:03 PM UTC+5:30, mm wrote:
>
> Hey Aswini -
> At least with the java client, I don't believe that you actually have to 
> download all of the ads. Instead, set up your selector, and then do 
> something like:
> Paging paging = new Paging();
> paging.setNumberResults(1); //make this as small as possible since 
> we don't really want to retrieve the ads
> paging.setStartIndex(0);
> selector.setPaging(paging);
> AdGroupAdPage page = getAdGroupAdService(acctId).get( selector );
> int numberOfAds = page.getTotalNumEntries();
>
> I haven't used this for ads, but I use this technique for other objects 
> and it works great.
>
> HTH -
> mm
>
> On Tuesday, August 19, 2014 8:12:00 AM UTC-5, Aswini wrote:
>>
>> Hi Josh, 
>>
>> I followed 1st way ( AdGroupAdService.get 
>> 
>>  ). 
>> Through this I downloaded total Text Ads of all campaigns it's took almost 
>> 3 hours time. I don't want to download any Text Ads of particular AdGroup. 
>> I need only count of TextAds for particular Adgroups. How can i get it 
>> this. 
>>
>>
>> On Tuesday, August 19, 2014 6:32:49 PM UTC+5:30, Josh Radcliff (AdWords 
>> API Team) wrote:
>>>
>>> Hi,
>>>
>>> There are (at least) two ways you could do this:
>>>
>>> 1. Perform an AdGroupAdService.get 
>>> 
>>>  (or AdGroupAdService.query 
>>> )
>>>  
>>> and filter by AdType 
>>> 
>>>  equal 
>>> to *TEXT_AD*. Each client library 
>>>  contains 
>>> an example named *GetTextAds* that does just that in the 
>>> examples/basic_operations folder.
>>>
>>> 2. Use the Ad Group Performance Report 
>>>  with 
>>> a filter on *AdType * of *TEXT_AD*, and include zero impressions 
>>> 
>>> .
>>>
>>> Cheers,
>>> Josh, Adwords API Team
>>>
>>> On Tuesday, August 19, 2014 2:40:40 AM UTC-4, Aswini wrote:

 Hi

 How can i get Text Ads count for particular AdGroups. Is there any 
 Adwords api class providing this option ? 

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2c251ad7-f0c6-475b-b974-01d94ab17060%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


account simplification: close variant matching NEAR_EXACT match

2014-08-25 Thread Luca Fiaschi
Hi ,
I would like to understand better how close variants work and whether this 
opportunity can be used to simplify the accounts structure:

My questions are the following:

1) We see that keywords like "nike shoes" can be triggered by mispellings 
like "nik shoes" or singular/ plural variants like "nike shoe" The question 
is: do we lose traffic if we book only one version instead of all variants? 
Conversely, does the kw quality score increases if it is not booked in all 
variants?

2) Is it meaningful to book all broad modifier permutations such as "+nike 
+shoes" vs "+shoes +nike" ?

3) Should the conjunctions be booked in broad or broad modifier "+nike 
+shoes in +paris"  vs "+nike +shoes +in +paris"

4) I also noticed that keywords can be triggered by alternative spellings 
of the word: for example "barcelona fc" is triggered by "barcelona football 
club". Is this true also the other way around? In other words, does (as 
search term) "barcelona football club" triggers also "barcellona fc" (as 
keyword) ?

In general I would like to know if a simplification of our account would 
payoff in terms of more concentrated kw statistics (which could increase 
quality score) and in terms of lighter account management without 
penalizing in term of reduced traffic.

Thanks,
Luca

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b06161d7-2b4d-4df0-a12e-6284d02f4473%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


SOAP-ERROR

2014-08-25 Thread Vassard
Hello!
I have a problem with GetCampaignsExample and other BasicOperations

SOAP-ERROR: Parsing WSDL: Couldn't load from 
'https://adwords.google.com/api/adwords/cm/v201406/CampaignService?wsdl' : 
failed to load external entity 
"https://adwords.google.com/api/adwords/cm/v201406/CampaignService?wsdl";


How to solve this problem?
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/f0c611c4-7560-4408-93c9-066cacc41d75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Results from TrafficEstimatorService are different from Keyword Planner Tool

2014-08-25 Thread Damian Stępień
Hi,

I have some problems with getting Adwords API to work correctly.

I use the following code: http://pastebin.com/bbcFJefx - It's a copy from 
API Examples, I just changed location, language and keywords so it should 
be fine.

However, the results from that code are: http://i.imgur.com/Ymxf2wD.png

While Keyword Planner Tool returns the following values: 
http://i.imgur.com/VTeogi4.png

There's a big difference. Even if TrafficEstimatorService returns USD 
values, converting it to PLN (zł) is still not enough.

Can you help me?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f96c360b-9c11-45f8-8340-a6e3cf7c729e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords OAuth2 using Service Account in C#

2014-08-25 Thread Jon Jones
This is a completely worthless response.
Please show some steps for how to set up a service account.

On Monday, June 2, 2014 9:40:04 AM UTC-4, Josh Radcliff (AdWords API Team) 
wrote:
>
> Hi,
>
> Are you trying to use a Service Account? If so, the .NET library's OAuth2 
> Guide 
> 
>  contains 
> useful information.
>
> If you are using a Service Account, I highly recommend considering the 
> *Installed 
> Application* or *Web Application* flow instead. You can achieve very 
> similar results 
>  
> with these flows and they are far easier to set up than the Service Account 
> flow.
>
> Cheers,
> Josh, AdWords API Team
>
> On Sunday, June 1, 2014 7:00:40 AM UTC-4, Chris Sturgeon wrote:
>>
>> I am having the same issue. Were you able to figure this out? 
>>
>>
>>
>> On Thursday, April 3, 2014 11:13:19 AM UTC-4, Richard wrote:
>>>
>>>
>>> Hi,
>>> We have an internal c# Adwords application which I trying to upgrade 
>>> from client login(v201309)  to OAuth2(v201402) 
>>> The application is running by scheduled job to update our Adwords data 
>>> as well as pulling reports so there is no user interaction involved.
>>> I have followed below example and was able to get as far as initialize 
>>> the ServiceAccountCredential,  In the example it's using PlusService but I 
>>> was not able to find any example on  Adwords API with 
>>> ServiceAccountCredential, 
>>> please advice how to obtain an Access Token from this point. 
>>>
>>>
>>> https://developers.google.com/api-client-library/dotnet/guide/aaa_oauth#service_account
>>>
>>> X509Certificate2 certificate = new 
>>> X509Certificate2(SERVICE_ACCOUNT_PKCS12_FILE_PATH, "notasecret", 
>>> X509KeyStorageFlags.Exportable);
>>>
>>> ServiceAccountCredential credential = new 
>>> ServiceAccountCredential(
>>>   new 
>>> ServiceAccountCredential.Initializer(SERVICE_ACCOUNT_EMAIL)
>>>   {
>>>   Scopes = new[] { "
>>> https://adwords.google.com/api/adwords/"; }
>>>   }.FromCertificate(certificate));
>>>
>>> // Create the service ==> where I am stuck
>>> //var service = new PlusService(new 
>>> BaseClientService.Initializer()
>>> //{
>>> //HttpClientInitializer = credential,
>>> //ApplicationName = "Plus API Sample",
>>> //});
>>>
>>> //Activity activity = 
>>> service.Activities.Get(ACTIVITY_ID).Execute();
>>> //Console.WriteLine("  Activity: " + 
>>> activity.Object.Content);
>>> //Console.WriteLine("  Video: " + 
>>> activity.Object.Attachments[0].Url);
>>>
>>> //Console.WriteLine("Press any key to continue...");
>>> //Console.ReadKey();
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7bee27c3-4373-49bb-a1df-6dab6a38ed2a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Very Strange Error: always get 0

2014-08-25 Thread David WM Lin
Hi Anash,

Yes, you are right, I did not set the "ClientCustomerId" header. However, I 
just do some testing today, the program works fine again with or without 
the "clientCustomerid" header. Very strange indeed. 

I will include ClientCustomerid header from now and hope this will fix the 
problem. 

Many thanks for you.

David




On Saturday, August 23, 2014 4:36:13 AM UTC+10, Anash P. Oommen (AdWords 
API Team) wrote:
>
> Hi David,
>
> Looks like you are not setting ClientCustomerId header any longer, so all 
> the requests to fetch specific entries are returning zero results. Could 
> you please check your code and confirm if this is the case?
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Friday, August 22, 2014 7:07:20 AM UTC-4, Dave L wrote:
>>
>> Hi,
>>
>> My code has been working fine until recently (about 2 weeks ago), I have 
>> experienced a very strange error. 
>>
>> I have always got a fresh AccessToken before calling the API. However, I 
>> always get "0" for every service I 
>> called. There is not error message, but simply "0> totalNumEntries>".
>>
>> Here is a sample of the response for "AdGroupCriterionService":
>>
>> > xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201402";>00050108ac19b7b00a42662191005c81AdGroupCriterionServiceget0216>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201402
>> ">0AdGroupCriterionPage
>>
>> After many hours testing, by accident, I changed the AccessToken to a 
>> fake AccessToken such as "d" to try, 
>> then I can get the correct response data from the server. 
>>
>> I just cannot believe this, it completely does not make any sense. I am 
>> not sure if this is my problem, or an error from Google.
>>
>> However, by using a fake AccessToken only works for some accounts, but 
>> some accounts still did not work no matter what I do.
>>
>> I really need your help on this. 
>>
>> Many thanks.
>> David
>>
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/29c68d6b-d836-4e82-9374-e71fca79c573%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Priority of Product Listing Ads campaigns

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi David,

Glad to hear that this resolved the issue. Our AddShoppingCampaign.java 
example 

 does 
contain code that creates the AdGroupAd (ProductAd), but I'll see if we can 
highlight this better in the shopping campaign documentation as well.

Cheers,
Josh, AdWords API Team

On Saturday, August 23, 2014 6:38:07 AM UTC-4, David Juarez wrote:
>
> Hi Josh,
>
> You were right. The problem were the PLA. Now the new shopping campaigns 
> are getting traffic again. Although they compete with the old one, as they 
> have got a higher priority, they get the traffic.
>
> I found a bit confusing that there were no code examples for creating PLAs 
> and no reference in the documentation in the page of the shopping 
> campaigns. Hence we thought that the PLA's were created automatically.
>
> Thanks,
> David
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4197c077-c51a-48c7-98b2-703935381b96%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Problem in creating Keywords in V201406

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi,

In case it wasn't clear from my earlier post, the relevant portion of the 
v201406 
Migration Guide 
 is 
the first row:

Enumeration values have been changed across services and reporting as 
> follows:
>
>- ACTIVE → ENABLED
>
>
>- DELETED → REMOVED
>
> See the release notes 
>  for more 
> details.


Cheers,
Josh, AdWords API Team

On Friday, August 22, 2014 1:14:24 PM UTC-4, Josh Radcliff (AdWords API 
Team) wrote:
>
> Hi,
>
> Are you specifying a value for BiddableAdGroupCriterion.userStatus 
> 
>  when 
> creating your keywords? If so, please note the change to the enums for that 
> field in v201406, as outlined in the v201406 migration guide 
> .
>
> If that's not the cause of the problem, could you post more details, such 
> as error messages and request and responses (with sensitive information 
> removed)?
>
> Thanks,
> Josh, AdWords API Team
>
> On Friday, August 22, 2014 10:16:55 AM UTC-4, Ranjith A wrote:
>>
>> Hello Everyone,
>>
>> I am trying to create adgroups,keywords and adtexts with *V201406* 
>> version. but keywords not creating everything (adgroup and adtext ) is 
>> fine. 
>>
>> but samething i tried in *V201402 its working*. i dono't know what is 
>> the problem.
>>
>>
>> am i need to add any parameters are something else?
>>
>>
>> anyone help me pls...
>>
>>
>>
>> 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/88202d4b-05f9-489a-a643-b8acbd8d22dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords v201402 Api Automatic Bidding Scheme Issue

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi,

The BUDGET_OPTIMIZER strategy is simply not available through the API 
anymore 
, 
so you will not be able to set up your campaign to use it via the API.

If you use the TARGET_SPEND ("Maximize clicks") bidding strategy instead, 
as recommended in the v201402 Migration Guide 
, 
then you will have to first create a shared bidding strategy through the 
BiddingStrategyService 
,
 
and then use the SharedBiddingStrategy.id 

 returned 
to set up your campaign. As mentioned in our Bidding Guide 
:

Each BiddingStrategyType and associated BiddingScheme type is only valid 
> for either a SharedBiddingStrategy 
> 
>  *or* a non-shared BiddingStrategyConfiguration of a specific campaign, 
> ad group, or keyword.


The table in the guide shows that a TARGET_SPEND strategy can only be 
created as SharedBiddingStrategy, not as part of a Campaign-specific 
bidding strategy configuration.

The v201402 Migration Guide also points out that:

EnhancedCpc setting can no longer be enabled for Manual CPC bidding 
> strategy.


However, you could use the ENHANCED_CPC bidding type 
,
 
although with this type you cannot specify criteria-specific bid overrides.

Best regards,
Josh, AdWords API Team

On Saturday, August 23, 2014 2:58:23 AM UTC-4, Akshay Joy wrote:
>
> Hi Josh Redcliff,
>
> Thank you for the valuable response. I am working on the migration of 
> BUDGET_OPTIMIZER to TARGET_SPEND. 
>
> API:- 201402
> Library:- C#
>
> When I try to create a Campaign in adwords.google.com with Bidding 
> (Manual+Enable Enhanced CPC / Automatic + CPC Bid Limit(Some value)), I can 
> able to create a campaign with the same bidding without error. Also When I 
> try to import the same campaign into the custom appliaction, I am getting 
> the proper values with *enableEnhancedCPC=true. *Also it supports the 
> BUDGET_OPTMIZER in the Campaign. 
>
> But when I try to create a campaign with same bidding 
> setting  (Manual+Enable Enhanced CPC / Automatic + CPC Bid Limit(Some 
> value)) , biddiing request xml shows below.
>
>  
> MANUAL_CPC
> 
>   true
> 
>   
>
> with Automatic Bidding + CPC Bid Limit
> 
> BUDGET_OPTIMIZER
> 
>   
> Money
> 1000
>   
>   false
> 
>   
>
> these request always gives error 
> BiddingErrors.CANNOT_ATTACH_BIDDING_STRATEGY_TO_CAMPAIGN @ operations[0].
> operand.biddingStrategyConfiguration.biddingScheme.enhancedCpcEnabled; 
> trigger:'true']"}
>
> &
>
>
>
> {"[BiddingErrors.CANNOT_ATTACH_BIDDING_STRATEGY_TO_CAMPAIGN @ 
> operations[0].operand.biddingStrategyConfiguration.biddingStrategyType; 
> trigger:'BUDGET_OPTIMIZER']"}
>
> But while importing the newly created campaign with the same settings, I 
> am not getting any error. 
>
> 1. Please tell me how its behaving like this?
> 2. Like adowrds.google.com, how can I use the same BUDGET_OPTIMIZER 
> setting with V201402 API.
> 3. How to solve the issue without using shared bidding Startegy for 
> Automatic bidding?
>
> On Friday, August 22, 2014 12:04:21 PM UTC+5:30, Akshay Joy wrote:
>>
>> I tried to use Automatic Bidding Scheme(*BUDGET_OPTIMIZER*) in the 
>> Custom application to create Campaign, when I try to create a campaign , I 
>> amg getting the error unable to attach the campaign with scheme 
>> *BUDGET_OPTIMIZER*. Later I checked the migration guide, they said it is 
>> no longer supported, they introduced new bidding scheme *TARGET_SPEND* and 
>> also that is SharedBiddingStartergy type. I am confusing whether I need to 
>> choose *TARGET_SPEND* or something else.
>>
>> Please help me to choose which is the correct replacement for the 
>> Automatic Bidding Scheme (*BUDGET_OPTIMIZER*) in Adwords v201402 Api.
>>
>> Inrorder to use TARGET_SPEND , I have to create SharedBiddingStartergy 
>> service mutate the Service, and get the Id set to 
>> campaign.biddingStartergyConfiguration.biddingStartergyId, 
>>
>> But What am facing is that SharedBiddingStratergy requires name before 
>> invoking the call for validation and real export. how can I achieve 
>> sharedbiddingStartergyService without any name mentioned in the custome 
>> code.
>>
>> If I use some random name in the SharedBiddingStratergy name, name shows 
>> in the Adwords.google.com looks weird. Please suggest a workaround for 
>> this.
>>
>> sharedBiddingS

Re: Adwords OAuth2 using Service Account in C#

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi,

The documentation in my previous post shows:

a. How to set up your App.config/Web.config for service 
accounts: 
https://github.com/googleads/googleads-adwords-dotnet-lib/wiki/Using-OAuth#using-oauth20-service-accounts
b. Step by step instructions on using a service account with the AdWords 
API: https://developers.google.com/adwords/api/docs/guides/service-accounts

Could you provide more details on what is not clear from those docs, or 
which step is giving you trouble?

Thanks,
Josh, AdWords API Team

On Friday, August 22, 2014 6:20:53 PM UTC-4, Jon Jones wrote:
>
> This is a completely worthless response.
> Please show some steps for how to set up a service account.
>
> On Monday, June 2, 2014 9:40:04 AM UTC-4, Josh Radcliff (AdWords API Team) 
> wrote:
>>
>> Hi,
>>
>> Are you trying to use a Service Account? If so, the .NET library's OAuth2 
>> Guide 
>> 
>>  contains 
>> useful information.
>>
>> If you are using a Service Account, I highly recommend considering the 
>> *Installed 
>> Application* or *Web Application* flow instead. You can achieve very 
>> similar results 
>>  
>> with these flows and they are far easier to set up than the Service Account 
>> flow.
>>
>> Cheers,
>> Josh, AdWords API Team
>>
>> On Sunday, June 1, 2014 7:00:40 AM UTC-4, Chris Sturgeon wrote:
>>>
>>> I am having the same issue. Were you able to figure this out? 
>>>
>>>
>>>
>>> On Thursday, April 3, 2014 11:13:19 AM UTC-4, Richard wrote:


 Hi,
 We have an internal c# Adwords application which I trying to upgrade 
 from client login(v201309)  to OAuth2(v201402) 
 The application is running by scheduled job to update our Adwords data 
 as well as pulling reports so there is no user interaction involved.
 I have followed below example and was able to get as far as initialize 
 the ServiceAccountCredential,  In the example it's using PlusService but I 
 was not able to find any example on  Adwords API with 
 ServiceAccountCredential, 
 please advice how to obtain an Access Token from this point. 


 https://developers.google.com/api-client-library/dotnet/guide/aaa_oauth#service_account

 X509Certificate2 certificate = new 
 X509Certificate2(SERVICE_ACCOUNT_PKCS12_FILE_PATH, "notasecret", 
 X509KeyStorageFlags.Exportable);

 ServiceAccountCredential credential = new 
 ServiceAccountCredential(
   new 
 ServiceAccountCredential.Initializer(SERVICE_ACCOUNT_EMAIL)
   {
   Scopes = new[] { "
 https://adwords.google.com/api/adwords/"; }
   }.FromCertificate(certificate));

 // Create the service ==> where I am stuck
 //var service = new PlusService(new 
 BaseClientService.Initializer()
 //{
 //HttpClientInitializer = credential,
 //ApplicationName = "Plus API Sample",
 //});

 //Activity activity = 
 service.Activities.Get(ACTIVITY_ID).Execute();
 //Console.WriteLine("  Activity: " + 
 activity.Object.Content);
 //Console.WriteLine("  Video: " + 
 activity.Object.Attachments[0].Url);

 //Console.WriteLine("Press any key to continue...");
 //Console.ReadKey();

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/722db42d-7f02-49d6-b1f8-3e6d3e01b4c4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Age Range sample data

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi Justin,

Even though your test account isn't serving ads, you can still get 
reporting data back from that account by including zero impressions. Our Zero 
Impression Reports Guide 
 
explains 
how to do this, and the *download_criteria_report* sample in each client 
library's example set shows how to set the *includeZeroImpressions* flag in 
your report requests.

Please give that a try and let me know if you have any trouble getting back 
data.

Cheers,
Josh, AdWords API Team

On Sunday, August 24, 2014 11:26:12 AM UTC-4, Justin Coon wrote:
>
> Hi,
>
> I'm using a test/non-production token and trying to get sample report 
> data. Obviously this is futile since there's no real activity to report off 
> of in my test account. Can anyone be so kind as to provide some sample XML 
> that comes back from the Age Range and Gender sample reports? I want to see 
> what it looks like when aggregated by the age ranges and genders. 
>
> Thanks!
> Justin
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3d803ce2-b5a1-45ad-9440-f447a7bc7858%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT @ ImpressionShare

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi,

The *ClickType* column is not compatible with *includeZeroImpressions* set 
to *true*. You can see this in the *Supports Zero impressions* column of 
the report documentation 
. 
In addition, the error details returned by your request will show this as 
well.

'ReportDownloadError.ZERO_IMPRESSIONS_REQUEST_NOT_SUPPORTED'
trigger: 'includeZeroImpressions is not supported for this request'

If you set *includeZeroImpressions* to *false* when requesting *ClickType* then 
your report should run without any errors.

Cheers,
Josh, AdWords API Team

On Monday, August 25, 2014 6:08:58 AM UTC-4, usaw...@gmail.com wrote:
>
> Hi,
>
>  I have problem for adgroup performance report when adding 'ClickType' in 
> my request.
>
> Below is the my request:
>
> [Aug 25 2014 05:56:56.00 - ERROR] POST 
> /api/adwords/reportdownload/v201402 HTTP/1.1
> User-Agent: curl, gzip
> Host: adwords.google.com
> Accept: */*
> Accept-Encoding: gzip
> Authorization: Bearer 
> developerToken: 
> clientCustomerId: ***
> Content-Length: 1179
> Expect: 100-continue
> Content-Type: multipart/form-data; 
> boundary=e9c042a8246949b4
>
> Parameters:
> __rdxml: 
> 
>   
> AccountCurrencyCode
> CampaignId
> AdGroupId
> Impressions
> Clicks
> Cost
> Date
> ClickType
> AveragePosition
> Conversions
> ConversionRate
> AdNetworkType1
> AdNetworkType2
> CostPerConversion
> PercentNewVisitors
> EnhancedCpcEnabled
> Status
> 
>   Status
>   NOT_IN
>   DELETED
> 
>   
>   Adgroup report #53fb0865161d0
>   ADGROUP_PERFORMANCE_REPORT
>   YESTERDAY
>   CSV
>   true
> 
>
> And I am testing it with my test account.
>
> Please let me what I am doing wrong.
>
>
> On Wednesday, February 15, 2012 11:20:08 AM UTC+5:30, Anash P. Oommen 
> wrote:
>>
>> Hi Ekran,
>>
>> AdWords doesn't provide hourly breakup of ImpressionShare data any 
>> longer. See 
>> http://googleadsdeveloper.blogspot.in/2012/01/upcoming-changes-to-adwords-impression.html
>>  for 
>> details.
>>
>> Cheers,
>> Anash P. Oommen,
>> AdWords API Advisor.
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fd1212c7-5149-466f-84e7-94ef40959505%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Very Strange Error: always get 0

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi David,

If things started working for you, then one possibility is that your OAuth2 
headers now resolve to that of an advertiser account instead of an MCC 
account. I recommend setting the clientCustomerId all the time, so you know 
for sure what account you are making calls against.

Cheers,
Anash

On Sunday, August 24, 2014 9:41:20 AM UTC-4, David WM Lin wrote:
>
> Hi Anash,
>
> Yes, you are right, I did not set the "ClientCustomerId" header. However, 
> I just do some testing today, the program works fine again with or without 
> the "clientCustomerid" header. Very strange indeed. 
>
> I will include ClientCustomerid header from now and hope this will fix the 
> problem. 
>
> Many thanks for you.
>
> David
>
>
>
>
> On Saturday, August 23, 2014 4:36:13 AM UTC+10, Anash P. Oommen (AdWords 
> API Team) wrote:
>>
>> Hi David,
>>
>> Looks like you are not setting ClientCustomerId header any longer, so all 
>> the requests to fetch specific entries are returning zero results. Could 
>> you please check your code and confirm if this is the case?
>>
>> Cheers,
>> Anash P. Oommen,
>> AdWords API Advisor.
>>
>> On Friday, August 22, 2014 7:07:20 AM UTC-4, Dave L wrote:
>>>
>>> Hi,
>>>
>>> My code has been working fine until recently (about 2 weeks ago), I have 
>>> experienced a very strange error. 
>>>
>>> I have always got a fresh AccessToken before calling the API. However, I 
>>> always get "0" for every service I 
>>> called. There is not error message, but simply "0>> totalNumEntries>".
>>>
>>> Here is a sample of the response for "AdGroupCriterionService":
>>>
>>> >> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>>>  
>>> xmlns="https://adwords.google.com/api/adwords/cm/v201402";>00050108ac19b7b00a42662191005c81AdGroupCriterionServiceget0216>>  
>>> xmlns="https://adwords.google.com/api/adwords/cm/v201402
>>> ">0AdGroupCriterionPage
>>>
>>> After many hours testing, by accident, I changed the AccessToken to a 
>>> fake AccessToken such as "d" to try, 
>>> then I can get the correct response data from the server. 
>>>
>>> I just cannot believe this, it completely does not make any sense. I am 
>>> not sure if this is my problem, or an error from Google.
>>>
>>> However, by using a fake AccessToken only works for some accounts, but 
>>> some accounts still did not work no matter what I do.
>>>
>>> I really need your help on this. 
>>>
>>> Many thanks.
>>> David
>>>
>>>
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3393b18b-8f1d-455c-8995-47985f46cd46%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: account simplification: close variant matching NEAR_EXACT match

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi Luca,

For questions like this that are not API-specific, please either contact 
general AdWords Help through the Help Center 
 or post your 
question to the AdWords Community forum 
.

Cheers,
Josh, AdWords API Team

On Monday, August 25, 2014 8:40:18 AM UTC-4, Luca Fiaschi wrote:
>
> Hi ,
> I would like to understand better how close variants work and whether this 
> opportunity can be used to simplify the accounts structure:
>
> My questions are the following:
>
> 1) We see that keywords like "nike shoes" can be triggered by mispellings 
> like "nik shoes" or singular/ plural variants like "nike shoe" The question 
> is: do we lose traffic if we book only one version instead of all variants? 
> Conversely, does the kw quality score increases if it is not booked in all 
> variants?
>
> 2) Is it meaningful to book all broad modifier permutations such as "+nike 
> +shoes" vs "+shoes +nike" ?
>
> 3) Should the conjunctions be booked in broad or broad modifier "+nike 
> +shoes in +paris"  vs "+nike +shoes +in +paris"
>
> 4) I also noticed that keywords can be triggered by alternative spellings 
> of the word: for example "barcelona fc" is triggered by "barcelona football 
> club". Is this true also the other way around? In other words, does (as 
> search term) "barcelona football club" triggers also "barcellona fc" (as 
> keyword) ?
>
> In general I would like to know if a simplification of our account would 
> payoff in terms of more concentrated kw statistics (which could increase 
> quality score) and in terms of lighter account management without 
> penalizing in term of reduced traffic.
>
> Thanks,
> Luca
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a4a37880-0a61-4e3f-a718-d74a2528385c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SOAP-ERROR

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Vassard,

Could you make sure that your php script can access these urls ('
https://adwords.google.com/api/adwords/cm/v201406/CampaignService?wsdl) 
from the machine you are running it on? 

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Monday, August 25, 2014 8:52:42 AM UTC-4, Vassard wrote:
>
> Hello!
> I have a problem with GetCampaignsExample and other BasicOperations
>
> SOAP-ERROR: Parsing WSDL: Couldn't load from '
> https://adwords.google.com/api/adwords/cm/v201406/CampaignService?wsdl' : 
> failed to load external entity "
> https://adwords.google.com/api/adwords/cm/v201406/CampaignService?wsdl";
>
>
> How to solve this problem?
> 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/1c4e5262-f22b-4999-85b1-cc6597c8658b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Change from deleted to removed

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi,

If that selector doesn't work, then there aren't any workarounds that I am 
aware of.

Cheers,
Anash

On Monday, August 25, 2014 4:55:11 AM UTC-4, adword...@pass-consulting.com 
wrote:
>
> Hi Anash,
>>>
>>
> I tried your tip using  the fields AdGroupStatus  resp. CampaignStatus. 
> It did not work. Nor with the get method and neigther wit the query method.
> When I tried
>  $query = 'SELECT Id,  Status, KeywordText, AdGroupId  WHERE AdGroupStatus 
> != ENABLED   ORDER BY Id';
>  
>  // Create paging controls.
>  $offset = 0;
>  $adGroupCriterionService = $user->GetAdGroupCriterionService ();
>  do {
>  $pageQuery = sprintf('%s LIMIT %d,%d', $query, $offset,
>  AdWordsConstants::RECOMMENDED_PAGE_SIZE);
>  // Make the query request.
>  $page = $adGroupCriterionService->query($pageQuery);
>
> I get an error has occurred: [SelectorError.INVALID_PREDICATE_FIELD_NAME 
> @ query; trigger:'AdGroupStatus'].
>
> Seems there is no way around doing it on my own.
>
>
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/60e0c14c-c801-4250-881c-691fbcdf0673%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Creating MCC Accounts via API

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Assaf,

Yes, you can create an account under an MCC using API, 
see 
https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201406/accountmanagement/CreateAccount.java
 
for a code example.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Saturday, August 23, 2014 1:24:22 AM UTC-4, assaf wrote:
>
> Hi Anash,
>
> Is there any way to achieve what I am looking for:
>
> Via API to create an account and be able to execute API calls on it using 
> my MCC developer token?
> (I need the new account to appear under my MCC managed accounts).
>
> Thanks
>
> On Friday, August 22, 2014 7:33:46 PM UTC+3, Anash P. Oommen (AdWords API 
> Team) wrote:
>>
>> Hi Assaf,
>>
>> 1. You can only create normal advertiser accounts using AdWords API, you 
>> cannot create an MCC account using ManagedCustomerService.
>> 2. The login credentials you are using may not be authorized to create an 
>> account in your MCC (e.g. it may not have administrative rights).
>>
>> Cheers,
>> Anash P. Oommen,
>> AdWords API Advisor.
>>
>> On Friday, August 22, 2014 11:25:24 AM UTC-4, assaf wrote:
>>>
>>> Hi,
>>>
>>> I want to create new Accounts under my MCC.
>>>
>>> I just tried to execute the sample code CreateAccount and get  an error 
>>> - ManagedCustomerServiceError.NOT_AUTHORIZED
>>>
>>> What can be the issue?
>>>
>>> Thanks
>>>
>>>  faultString: [ManagedCustomerServiceError.NOT_AUTHORIZED @ 
>>> operations[0]]
>>>  faultActor: 
>>>  faultNode: 
>>>  faultDetail: 
>>> {https://adwords.google.com/api/adwords/mcm/v201406}ApiExceptionFault:[ManagedCustomerServiceError.NOT_AUTHORIZED
>>>  
>>> @ 
>>> operations[0]]ApiException>>  
>>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
>>> xsi:type="ManagedCustomerServiceError">operations[0]ManagedCustomerServiceError.NOT_AUTHORIZEDManagedCustomerServiceErrorNOT_AUTHORIZED
>>>
>>> [ManagedCustomerServiceError.NOT_AUTHORIZED @ operations[0]]
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5b6dd9c7-bd2d-4aea-a83d-69ffdf7c5f62%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Exception says "An API exception has occurred. See ApiException and InnerException fields for more details."

2014-08-25 Thread Oscar Martinez
Hi Anash, 

Last Friday I sent you the information about the SOAP log. I both cases, 
Test and Production accounts, we get the same SOAP log message.

Thank you. 

On Thursday, August 21, 2014 12:59:29 PM UTC-6, Oscar Martinez wrote:
>
> Hi, 
>
> I get this error trying to get information about campaigns. I'm using one 
> of the examples of the official .Net Library.
> Looking for a similar post, I found this: 
> https://groups.google.com/forum/#!msg/adwords-api/WOlH5z4-yDs/US4ZY-4QhlwJ
>
> Answering what Takeshi Hagikura asked in the post reply:
>
> Are you using a test account or a production account? 
> Both, Production and Testing account.
>
> Either way, please make sure you have accepted the terms&conditions for 
> AdWords API.
> Yes, I have.
>
> If you use a production account, please make sure you have filled in the 
> billing information.
> Yes, I have. Production MCC Developer Token is pending approval.
>
> Error message:
> Failed to get campaigns. Exception says "An API exception has occurred. 
> See ApiException and InnerException fields for more details."
>
> What I get from OAuth2:
> 
> 
> 
> 
>
> 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/40ff2235-c937-414b-afd8-e9e9658b29d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Trying to connect to AdWords API .Net

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Oscar,

Not sure if you already solved this, but OAuth2 clientId and secret are 
different from your clientCustomerId or developerToken. 
See 
https://github.com/googleads/googleads-dotnet-lib/wiki/How-to-create-OAuth2-client-id-and-secret
 
for instructions on how to obtain an OAuth2 clientId and secret.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Thursday, August 21, 2014 11:02:10 AM UTC-4, Oscar Martinez wrote:
>
> Hi, 
>
> I'm trying to connect to AdWords API using .Net Library. I'm trying to 
> connect to API, but my the token of my official MCC account it's en pending 
> approval, but I created a testing account and I don't get the connection 
> because I need a token from OAuth2. Trying to get that token from OAuth2 I 
> get an error "invalid_client: The OAuth client was not found" (see 
> attachment).
>
> Is something wrong in my data? (in the attachment image you can see where 
> I'm taking the data)
>
> 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/b230569d-a188-4429-a2c0-0843e4af657c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SOAP-ERROR

2014-08-25 Thread Vassard


403. That’s an error. Your client does not have permission to get URL
/api/adwords/cm/v201406/CampaignService from this server.

but i don't understand why ?  my user has a Access Token. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/994f1fe5-3730-4984-a348-6ccc584bb3ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Age Range sample data

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi,

Just to clarify, even on my test account, if I submit:


https://adwords.google.com/api/adwords/cm/v201406";>

  CampaignId
  AdGroupId
  Id
  Criteria
  Impressions
  Clicks
  Cost
  
AdGroupId
EQUALS
8138389615
  

Age range performance report #140897729
AGE_RANGE_PERFORMANCE_REPORT
YESTERDAY
XML
*true*


Then I'll get back:






  







  
  
  
  
  
  
  
  



In other words, AdWords will still give me an idea of the report contents (
*ageRange* values), even though I'm using a test account.

Cheers,
Josh, AdWords API Team

On Monday, August 25, 2014 9:48:33 AM UTC-4, Josh Radcliff (AdWords API 
Team) wrote:
>
> Hi Justin,
>
> Even though your test account isn't serving ads, you can still get 
> reporting data back from that account by including zero impressions. Our Zero 
> Impression Reports Guide 
> 
>  explains 
> how to do this, and the *download_criteria_report* sample in each client 
> library's example set shows how to set the *includeZeroImpressions* flag 
> in your report requests.
>
> Please give that a try and let me know if you have any trouble getting 
> back data.
>
> Cheers,
> Josh, AdWords API Team
>
> On Sunday, August 24, 2014 11:26:12 AM UTC-4, Justin Coon wrote:
>>
>> Hi,
>>
>> I'm using a test/non-production token and trying to get sample report 
>> data. Obviously this is futile since there's no real activity to report off 
>> of in my test account. Can anyone be so kind as to provide some sample XML 
>> that comes back from the Age Range and Gender sample reports? I want to see 
>> what it looks like when aggregated by the age ranges and genders. 
>>
>> Thanks!
>> Justin
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5ec558bc-2c65-4f15-bb86-fa91f3e3c603%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How many test accounts allowed in a test MCC?

2014-08-25 Thread Stacie Waleyko
Hi, I was wondering where I could find the number of test accounts allowed 
in a test MCC. I found a post 

 
from last month that indicates there is a limit but was unable to find it 
in any of the documentation. Right now I am getting a 
ManagedCustomerServiceError.TEST_ACCOUNT_LINK_ERROR when I try to create a 
new account. There are currently 9 accounts in my test MCC.

Thanks,

Stacie

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4c9546f3-4a6a-49a8-9bfe-a2c4b173ac4c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting Remarketing Tag through API

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Warner,

Could you share your MCC customer id and client customer id by using the 
"Reply to Author" option? I can take a look.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Thursday, August 21, 2014 6:26:19 PM UTC-4, Warner Onstine wrote:
>
> And to clarify I'm hitting this service url:
>
> https://adwords.google.com/api/adwords/cm/v201406/ConversionTrackerService?wsdl
>
> On Thursday, August 21, 2014 3:23:29 PM UTC-7, Warner Onstine wrote:
>>
>> Here's the xml request
>> http://schemas.xmlsoap.org/soap/envelope/"; 
>> xmlns:tns="https://adwords.google.com/api/adwords/cm/v201406"; xmlns:xsi="
>> http://www.w3.org/2001/XMLSchema-instance";>
>> 
>> https://adwords.google.com/api/adwords/cm/v201406"; xmlns:ns1="
>> https://adwords.google.com/api/adwords/cm/v201406";>
>> CUSTOMER_ID
>> DEV_TOKEN
>> Primeloop
>> false
>> false
>> 
>> 
>> 
>> https://adwords.google.com/api/adwords/cm/v201406"; 
>> xmlns:tns="https://adwords.google.com/api/adwords/cm/v201406";>
>> 
>> Name
>> 
>> 
>> 
>> 
>>
>> Result (that has been converted to json:
>> { rval: { totalNumEntries: '0', 'Page.Type': 'ConversionTrackerPage' } }
>>
>> -warner
>>
>> On Wednesday, August 20, 2014 5:08:12 PM UTC-7, Warner Onstine wrote:
>>>
>>> Sorry if this is a double post, but my other one isn't showing so 
>>> posting again to make sure it goes through properly.
>>>
>>> I'm trying to get the remarketing tag/snippet through the API. Looking 
>>> at a few other answers in here this should be possible through 
>>> the ConversionTrackerService. I've tried sending a get through to get all 
>>> of my trackers but I'm getting 0 results back.
>>>
>>> I know that I have the tag because I can see it in the UI for my test 
>>> account.
>>>
>>> Setup:
>>> - MCC Test account
>>> - Sub account under MCC test account that I'm querying on and that has 
>>> the tag
>>> - MCC regular account where I have a dev token waiting for approval 
>>> while I work on trying to get the necessary api calls working
>>>
>>> Thanks in advance!
>>> -warner
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5d252d7b-293e-403d-a09f-fe8b6369878e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


negative keywords at campaign level using java

2014-08-25 Thread Naveenkumar kuppili
HI

   any body could you please help on "negative keywords at campaign level 
using java api" .

Thanks,
Naveen

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/460cf99a-46e3-4766-b599-e72a50910717%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: negative keywords at campaign level using java

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi,

The AddKeywords.java 

 example 
in the client library shows how to add a *NegativeAdGroupCriterion *to your 
campaign.

Cheers,
Josh, AdWords API Team

On Monday, August 25, 2014 10:41:04 AM UTC-4, Naveenkumar kuppili wrote:
>
> HI
>
>any body could you please help on "negative keywords at campaign level 
> using java api" .
>
> Thanks,
> Naveen
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c1f72127-7d50-41b0-9cbb-a7113d297e7b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How many test accounts allowed in a test MCC?

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Stacie,

I'll ask our tech writer to document this error in detail. One of the 
reasons why this error happens is because of the number of test accounts 
you can have under a test MCC. This is currently limited to 9, as you 
noticed.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Monday, August 25, 2014 10:55:20 AM UTC-4, Stacie Waleyko wrote:
>
> Hi, I was wondering where I could find the number of test accounts allowed 
> in a test MCC. I found a post 
> 
>  
> from last month that indicates there is a limit but was unable to find it 
> in any of the documentation. Right now I am getting a 
> ManagedCustomerServiceError.TEST_ACCOUNT_LINK_ERROR when I try to create a 
> new account. There are currently 9 accounts in my test MCC.
>
> Thanks,
>
> Stacie
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2a3a0dfa-6b00-4371-9e98-a5be4705ae35%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to create negative keywords campaign level using java

2014-08-25 Thread Naveenkumar kuppili
HI 

   could you please provide  example code to  create negative keywords at 
campaign level using java

  Appreciate your help

Regards,
Naveen

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3dd08c6d-e0a8-42fe-8d36-ed8cf315651d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ad group mobile bid modifiers in shopping campaigns not working

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Greg,

No updates, I'll ping the team again for updates today.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Thursday, August 21, 2014 2:17:33 PM UTC-4, GregT wrote:
>
> Hi, Anash.
>
> Any word on this -- particularly as to why adding ad group mobile bid 
> modifiers on shopping campaigns would not be permitted through the API when 
> it works fine through the AdWords UI?  We'd really like to be able to set 
> these, as we previously were on our PLA campaigns.
>
> Thanks,
> Greg
>
> On Thursday, August 14, 2014 10:23:14 AM UTC-5, Anash P. Oommen (AdWords 
> API Team) wrote:
>>
>> Hi Greg,
>>
>> I checked the logs, this is a OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE 
>> error that is not getting rethrown correctly. I've filed a request to 
>> ensure that the error is handled and rethrown correctly instead of the 
>> generic "Fault occurred while processing." message. I'll also find out why 
>> the operation is not allowed by the API if it is allowed by the UI.
>>
>> Cheers,
>> Anash P. Oommen
>> AdWords API Advisor.
>>
>> On Wednesday, August 13, 2014 10:57:14 AM UTC-4, GregT wrote:
>>>
>>> Hi,
>>>
>>> I'm doing final testing of our code to start handling the upcoming 
>>> migration to shopping campaigns.  One common thing we do on all our 
>>> campaign types (including PLA, and will need to do on shopping campaigns) 
>>> is adjust mobile bid modifiers at the ad group and campaign level. 
>>>  However, every attempt at doing this at the ad group level in our test 
>>> account is failing (campaign level is working fine).  The exact same code 
>>> is used to manage this for every type of campaign we manage, and has been 
>>> working (and still does work) on all of them (PLA, search, and display), 
>>> except for shopping.  We get a very generic error back from the API 
>>> whenever we do it for a shopping campaign, saying "Fault occurred while 
>>> processing.".  An example request/response is below.  We can add/modify 
>>> these bid modifiers in the AdWords UI, so it's not that shopping campaigns 
>>> don't support mobile bid modifiers -- the API just appears to have a bug 
>>> adding them.  
>>>
>>> Could someone please look into this?  We are using v201406 via the 
>>> latest version of the Java client API, if that matters.
>>>
>>> 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/v201406"; 
>>> soapenv:mustUnderstand="0">
>>> redacted
>>> redacted
>>> redacted
>>> false
>>> false
>>> 
>>> 
>>> 
>>> https://adwords.google.com/api/adwords/cm/v201406
>>> ">
>>> 
>>> ADD
>>> 
>>> 18347850910
>>> 
>>> 30001
>>> 
>>> 0.49994
>>> 
>>> 
>>> 
>>> ADD
>>> 
>>> 18347851030
>>> 
>>> 30001
>>> 
>>> 0.49994
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 08-12-14 17:26:54,409  [main] WARN soapXmlLogger - SOAP Response:
>>> http://schemas.xmlsoap.org/soap/envelope/";>
>>> 
>>> https://adwords.google.com/api/adwords/cm/v201406";>
>>> 000500762a915dc00a8076c81c009ef5
>>> AdGroupBidModifierService
>>> mutate
>>> 2
>>> 114
>>> 
>>> 
>>> 
>>> 
>>> soap:Server
>>> Fault occurred while processing.
>>> 
>>> 
>>> 
>>>
>>> Thanks in advance,
>>> Greg
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7ca90022-add4-408a-ba1f-76655bc5680f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SOAP-ERROR

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Vassard,

Try accessing /api/adwords/cm/v201406/CampaignService?wsdl and see if that 
works.

Cheers,
Anash

On Monday, August 25, 2014 10:30:18 AM UTC-4, Vassard wrote:
>
> 403. That’s an error. Your client does not have permission to get URL
> /api/adwords/cm/v201406/CampaignService from this server.
>
> but i don't understand why ?  my user has a Access Token. 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/aef2ec1b-e63b-4a3e-8a56-290c9ea059e8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Exception says "An API exception has occurred. See ApiException and InnerException fields for more details."

2014-08-25 Thread Anash P. Oommen (AdWords API Team)
Hi Oscar,

I sent you a private response, could you reply to that email and provide 
the logs once more?

Thx,
Anash

On Monday, August 25, 2014 10:23:23 AM UTC-4, Oscar Martinez wrote:
>
> Hi Anash, 
>
> Last Friday I sent you the information about the SOAP log. I both cases, 
> Test and Production accounts, we get the same SOAP log message.
>
> Thank you. 
>
> On Thursday, August 21, 2014 12:59:29 PM UTC-6, Oscar Martinez wrote:
>>
>> Hi, 
>>
>> I get this error trying to get information about campaigns. I'm using one 
>> of the examples of the official .Net Library.
>> Looking for a similar post, I found this: 
>> https://groups.google.com/forum/#!msg/adwords-api/WOlH5z4-yDs/US4ZY-4QhlwJ
>>
>> Answering what Takeshi Hagikura asked in the post reply:
>>
>> Are you using a test account or a production account? 
>> Both, Production and Testing account.
>>
>> Either way, please make sure you have accepted the terms&conditions for 
>> AdWords API.
>> Yes, I have.
>>
>> If you use a production account, please make sure you have filled in the 
>> billing information.
>> Yes, I have. Production MCC Developer Token is pending approval.
>>
>> Error message:
>> Failed to get campaigns. Exception says "An API exception has occurred. 
>> See ApiException and InnerException fields for more details."
>>
>> What I get from OAuth2:
>> 
>> 
>> 
>> 
>>
>> 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/18ddb50b-a2b2-41b3-9a9c-3ac26257ffda%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How many test accounts allowed in a test MCC?

2014-08-25 Thread Stacie Waleyko
Yes, if it could be documented that would be great. Thank you for looking 
into this!

On Monday, August 25, 2014 8:05:50 AM UTC-7, Anash P. Oommen (AdWords API 
Team) wrote:
>
> Hi Stacie,
>
> I'll ask our tech writer to document this error in detail. One of the 
> reasons why this error happens is because of the number of test accounts 
> you can have under a test MCC. This is currently limited to 9, as you 
> noticed.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Monday, August 25, 2014 10:55:20 AM UTC-4, Stacie Waleyko wrote:
>>
>> Hi, I was wondering where I could find the number of test accounts 
>> allowed in a test MCC. I found a post 
>> 
>>  
>> from last month that indicates there is a limit but was unable to find it 
>> in any of the documentation. Right now I am getting a 
>> ManagedCustomerServiceError.TEST_ACCOUNT_LINK_ERROR when I try to create a 
>> new account. There are currently 9 accounts in my test MCC.
>>
>> Thanks,
>>
>> Stacie
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/56d9180f-2e84-4ef1-bb1e-a3356163ffb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Exception says "An API exception has occurred. See ApiException and InnerException fields for more details."

2014-08-25 Thread Oscar Martinez
Done! I sent it by email.

On Thursday, August 21, 2014 12:59:29 PM UTC-6, Oscar Martinez wrote:
>
> Hi, 
>
> I get this error trying to get information about campaigns. I'm using one 
> of the examples of the official .Net Library.
> Looking for a similar post, I found this: 
> https://groups.google.com/forum/#!msg/adwords-api/WOlH5z4-yDs/US4ZY-4QhlwJ
>
> Answering what Takeshi Hagikura asked in the post reply:
>
> Are you using a test account or a production account? 
> Both, Production and Testing account.
>
> Either way, please make sure you have accepted the terms&conditions for 
> AdWords API.
> Yes, I have.
>
> If you use a production account, please make sure you have filled in the 
> billing information.
> Yes, I have. Production MCC Developer Token is pending approval.
>
> Error message:
> Failed to get campaigns. Exception says "An API exception has occurred. 
> See ApiException and InnerException fields for more details."
>
> What I get from OAuth2:
> 
> 
> 
> 
>
> 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/b31c7910-36c9-49f6-9bdd-c4ad750ff14b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: account simplification: close variant matching NEAR_EXACT match

2014-08-25 Thread Luca Fiaschi
Hi Josh, 
thanks and sorry for going off topic.

Can you confirm that nothing changes on the API side regarding announcement 
?

http://adwords.blogspot.de/2012/04/new-matching-behavior-for-phrase-and.html

Also, do you know whether the algorithm for computing close variants is it 
published anywhere?

Thanks,
Luca


On Monday, August 25, 2014 3:58:03 PM UTC+2, Josh Radcliff (AdWords API 
Team) wrote:
>
> Hi Luca,
>
> For questions like this that are not API-specific, please either contact 
> general AdWords Help through the Help Center 
>  or post your 
> question to the AdWords Community forum 
> .
>
> Cheers,
> Josh, AdWords API Team
>
> On Monday, August 25, 2014 8:40:18 AM UTC-4, Luca Fiaschi wrote:
>>
>> Hi ,
>> I would like to understand better how close variants work and whether 
>> this opportunity can be used to simplify the accounts structure:
>>
>> My questions are the following:
>>
>> 1) We see that keywords like "nike shoes" can be triggered by mispellings 
>> like "nik shoes" or singular/ plural variants like "nike shoe" The question 
>> is: do we lose traffic if we book only one version instead of all variants? 
>> Conversely, does the kw quality score increases if it is not booked in 
>> all variants?
>>
>> 2) Is it meaningful to book all broad modifier permutations such as 
>> "+nike +shoes" vs "+shoes +nike" ?
>>
>> 3) Should the conjunctions be booked in broad or broad modifier "+nike 
>> +shoes in +paris"  vs "+nike +shoes +in +paris"
>>
>> 4) I also noticed that keywords can be triggered by alternative spellings 
>> of the word: for example "barcelona fc" is triggered by "barcelona football 
>> club". Is this true also the other way around? In other words, does (as 
>> search term) "barcelona football club" triggers also "barcellona fc" (as 
>> keyword) ?
>>
>> In general I would like to know if a simplification of our account would 
>> payoff in terms of more concentrated kw statistics (which could increase 
>> quality score) and in terms of lighter account management without 
>> penalizing in term of reduced traffic.
>>
>> Thanks,
>> Luca
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/37816d0c-8ec7-4a8f-b321-3b85c9e9615c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Age Range sample data

2014-08-25 Thread Justin Coon
Hi Josh - thats great and gives me some promise! i must be doing something
wrong with my call - heres my result set


  
  
  

  
  
  
  
  
  

  


I will re-look at how I am configuring my call to the API
(selectors/predicates). I appreciate the quick response so much and will
update you after I re-check my query.




On Mon, Aug 25, 2014 at 9:39 AM, Josh Radcliff (AdWords API Team) <
adwordsapiadvisor+j...@google.com> wrote:

> Hi,
>
> Just to clarify, even on my test account, if I submit:
>
> 
> https://adwords.google.com/api/adwords/cm/v201406";>
> 
>   CampaignId
>   AdGroupId
>   Id
>   Criteria
>   Impressions
>   Clicks
>   Cost
>   
> AdGroupId
> EQUALS
> 8138389615
>   
> 
> Age range performance report
> #140897729
> AGE_RANGE_PERFORMANCE_REPORT
> YESTERDAY
> XML
> *true*
> 
>
> Then I'll get back:
>
> 
> 
> 
> 
> 
>   
> 
> 
> 
> 
> 
> 
> 
>   
>ageRange="18-24" impressions="0" clicks="0" cost="0"/>
>ageRange="25-34" impressions="0" clicks="0" cost="0"/>
>ageRange="35-44" impressions="0" clicks="0" cost="0"/>
>ageRange="45-54" impressions="0" clicks="0" cost="0"/>
>ageRange="55-64" impressions="0" clicks="0" cost="0"/>
>ageRange="65 or more" impressions="0" clicks="0" cost="0"/>
>ageRange="Undetermined" impressions="0" clicks="0" cost="0"/>
> 
> 
>
> In other words, AdWords will still give me an idea of the report contents (
> *ageRange* values), even though I'm using a test account.
>
> Cheers,
> Josh, AdWords API Team
>
>
> On Monday, August 25, 2014 9:48:33 AM UTC-4, Josh Radcliff (AdWords API
> Team) wrote:
>>
>> Hi Justin,
>>
>> Even though your test account isn't serving ads, you can still get
>> reporting data back from that account by including zero impressions. Our Zero
>> Impression Reports Guide
>> 
>>  explains
>> how to do this, and the *download_criteria_report* sample in each client
>> library's example set shows how to set the *includeZeroImpressions* flag
>> in your report requests.
>>
>> Please give that a try and let me know if you have any trouble getting
>> back data.
>>
>> Cheers,
>> Josh, AdWords API Team
>>
>> On Sunday, August 24, 2014 11:26:12 AM UTC-4, Justin Coon wrote:
>>>
>>> Hi,
>>>
>>> I'm using a test/non-production token and trying to get sample report
>>> data. Obviously this is futile since there's no real activity to report off
>>> of in my test account. Can anyone be so kind as to provide some sample XML
>>> that comes back from the Age Range and Gender sample reports? I want to see
>>> what it looks like when aggregated by the age ranges and genders.
>>>
>>> Thanks!
>>> Justin
>>>
>>  --
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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/7ZrIKY1CEP4/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/5ec558bc-2c65-4f15-bb86-fa91f3e3c603%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.co

Re: Google Product Taxonomy vs Product Bidding Category

2014-08-25 Thread HK

>
> Hi,
>>
>
Wanted to mention that this is a show stopper for us. We need to be able to 
look across all categories sent via the Content API to the GMC and then 
turn around and call the AdWords API  to create Product Groups partitioned 
by those categories. The taxonomies really need to be identical. Although 
it would be technically possible for us to map them from GMC to AdWords (if 
the mappings were published), that would be less than ideal and error prone 
as the taxonomies potentially evolves.

Hopefully this is something that can be addressed soon.

Thanks,
Hans

 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/136a51a3-7e80-4995-a329-34892d865a0c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Canadian taxonomy missing for Product Groups

2014-08-25 Thread HK
Hi, guys

I apologize if I have missed something obvious, but I'm not seeing the 
Canadian taxonomy in the AdWords UI or via the APIs for Product Groups. I 
can create a Shopping Campaign with Country of Sale set to Canada, but when 
I later go to subdivide the All Products product group, "Category" does not 
show up as an option. The other dimensions are there however.

With the mandatory switch-over to Shopping Campaigns only 6 days away, I'm 
hoping it will be available within the next couple days so that we are 
start testing.

Unrelated, but I'll throw it in here. For the US, "Shower Enclosures" is 
showing up with two different category IDs (-3658200340699135554 
and 2429746971365583318) for the same level (BIDDING_CATEGORY_L5) and the 
same parent (3472290827419987736). I assume that not the intention. So far, 
I've only seen this for the US, and not GB for example.

Thanks,
Hans

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fd40a817-2829-4795-825e-a0a303c6aac0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: account simplification: close variant matching NEAR_EXACT match

2014-08-25 Thread Josh Radcliff (AdWords API Team)
Hi Luca,

The only change that I'm aware of that's related to that announcement is 
that there is now a KeywordMatchSetting 

 on* Campaign.settings 

 *that 
allows you to opt in or out of the new behavior.

Cheers,
Josh, AdWords API Team

On Monday, August 25, 2014 12:17:30 PM UTC-4, Luca Fiaschi wrote:
>
> Hi Josh, 
> thanks and sorry for going off topic.
>
> Can you confirm that nothing changes on the API side regarding 
> announcement ?
>
>
> http://adwords.blogspot.de/2012/04/new-matching-behavior-for-phrase-and.html
>
> Also, do you know whether the algorithm for computing close variants is it 
> published anywhere?
>
> Thanks,
> Luca
>
>
> On Monday, August 25, 2014 3:58:03 PM UTC+2, Josh Radcliff (AdWords API 
> Team) wrote:
>>
>> Hi Luca,
>>
>> For questions like this that are not API-specific, please either contact 
>> general AdWords Help through the Help Center 
>>  or post your 
>> question to the AdWords Community forum 
>> .
>>
>> Cheers,
>> Josh, AdWords API Team
>>
>> On Monday, August 25, 2014 8:40:18 AM UTC-4, Luca Fiaschi wrote:
>>>
>>> Hi ,
>>> I would like to understand better how close variants work and whether 
>>> this opportunity can be used to simplify the accounts structure:
>>>
>>> My questions are the following:
>>>
>>> 1) We see that keywords like "nike shoes" can be triggered by 
>>> mispellings like "nik shoes" or singular/ plural variants like "nike 
>>> shoe" The question is: do we lose traffic if we book only one version 
>>> instead of all variants? 
>>> Conversely, does the kw quality score increases if it is not booked in 
>>> all variants?
>>>
>>> 2) Is it meaningful to book all broad modifier permutations such as 
>>> "+nike +shoes" vs "+shoes +nike" ?
>>>
>>> 3) Should the conjunctions be booked in broad or broad modifier "+nike 
>>> +shoes in +paris"  vs "+nike +shoes +in +paris"
>>>
>>> 4) I also noticed that keywords can be triggered by alternative 
>>> spellings of the word: for example "barcelona fc" is triggered by 
>>> "barcelona football club". Is this true also the other way around? In other 
>>> words, does (as search term) "barcelona football club" triggers also 
>>> "barcellona fc" (as keyword) ?
>>>
>>> In general I would like to know if a simplification of our account would 
>>> payoff in terms of more concentrated kw statistics (which could increase 
>>> quality score) and in terms of lighter account management without 
>>> penalizing in term of reduced traffic.
>>>
>>> Thanks,
>>> Luca
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f7687f06-d0fe-4dec-8687-433114d4cff1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Age Range sample data

2014-08-25 Thread Justin Coon
Josh - are ad groups required for this report? Or can we aggregate the
results at a campaign or even higher at the account level? I know I can do
it manually by making multiple calls and aggregating myself.
Hi,

Just to clarify, even on my test account, if I submit:


https://adwords.google.com/api/adwords/cm/v201406";>

  CampaignId
  AdGroupId
  Id
  Criteria
  Impressions
  Clicks
  Cost
  
AdGroupId
EQUALS
8138389615
  

Age range performance report #140897729
AGE_RANGE_PERFORMANCE_REPORT
YESTERDAY
XML
*true*


Then I'll get back:






  







  
  
  
  
  
  
  
  



In other words, AdWords will still give me an idea of the report contents (
*ageRange* values), even though I'm using a test account.

Cheers,
Josh, AdWords API Team

On Monday, August 25, 2014 9:48:33 AM UTC-4, Josh Radcliff (AdWords API
Team) wrote:
>
> Hi Justin,
>
> Even though your test account isn't serving ads, you can still get
> reporting data back from that account by including zero impressions. Our Zero
> Impression Reports Guide
> 
>  explains
> how to do this, and the *download_criteria_report* sample in each client
> library's example set shows how to set the *includeZeroImpressions* flag
> in your report requests.
>
> Please give that a try and let me know if you have any trouble getting
> back data.
>
> Cheers,
> Josh, AdWords API Team
>
> On Sunday, August 24, 2014 11:26:12 AM UTC-4, Justin Coon wrote:
>>
>> Hi,
>>
>> I'm using a test/non-production token and trying to get sample report
>> data. Obviously this is futile since there's no real activity to report off
>> of in my test account. Can anyone be so kind as to provide some sample XML
>> that comes back from the Age Range and Gender sample reports? I want to see
>> what it looks like when aggregated by the age ranges and genders.
>>
>> Thanks!
>> Justin
>>
>  --
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7ZrIKY1CEP4/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/5ec558bc-2c65-4f15-bb86-fa91f3e3c603%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/CAEtEPZuSg_6WhrR2EHFL9sR%3D-g_4SUsBRS4srFWFzBtzCvp-NQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: conversions in shopping performance report

2014-08-25 Thread Eric Maas
Hi Ray,

We were wondering if you had any progress on looking into the 
ConversionTypeName, ConversionCategoryName and Device for the shopping 
performance report?

Thanks,
Eric

On Wednesday, June 25, 2014 6:13:04 PM UTC-4, Ray Tsang (AdWords API Team) 
wrote:
>
> Hi guys,
>
> I'll also inquire about the Device field as well.
>
> Thanks,
>
> Ray
>
> On Wednesday, June 25, 2014 1:32:45 PM UTC-7, CFJ wrote:
>>
>> +1 for requesting Device as an available field in either the Shopping 
>> Performance Report or the Product Partition Report
>>  
>>  
>>  
>>
>> On Wednesday, June 18, 2014 5:33:23 PM UTC-4, GregT wrote:
>>
>>> Thanks, Ray.
>>>
>>> Also, I meant to mention that if it'd be possible to add Device to the 
>>> report (it's not in all the performance reports, but is in most of them), 
>>> that would be really helpful as well.
>>>
>>> Thanks,
>>> Greg
>>>
>>> On Wednesday, June 18, 2014 11:59:40 AM UTC-6, Ray Tsang (AdWords API 
>>> Team) wrote:

 Greg,

 I'll take a look at this.

 Cheers,

 Ray

 On Wednesday, June 18, 2014 1:38:22 PM UTC-4, GregT wrote:
>
> Hi,
>
> We are preparing to move all our client's PLA campaigns over to 
> shopping campaigns, as required by August, since PLA campaigns will be 
> retired then.  One issue we're running into is that, unlike every other 
> performance report that we use in the API, the shopping performance 
> report 
> does not contain the fields "ConversionTypeName" and 
> "ConversionCategoryName", which allow segmenting by individual conversion 
> types.  This is critical information for us, because many [most?] of our 
> clients have many different conversion types, and the information on what 
> kind(s) of conversion happened is very important.  Could you please add 
> these fields to the report, in matching with the other performance 
> reports, 
> particularly as we are all going to be required to upgrade to shopping 
> campaigns very soon?
>
> Thanks much,
> Greg
>


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5a9b8616-62ce-4c5a-a4be-622d86d5e9d2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.