Re: Gender performance report always segmenting by ad group

2015-12-18 Thread Tiana S.
Hi Yin,

That hasn't been documented anywhere. The documentation says: "The Gender 
Performance report includes all statistics aggregated by gender. [...] If 
other segment fields are used, you may get more than one row per gender." I 
didn't add ad group or any other segment field in my request, so I expect 
it to JUST be broken down by gender, nothing else.

It would also be great if you could simply request e.g. ad group without it 
breaking down instantly. This should be an option in my honest opinion. 
Maybe enabled by default, but you should be able to choose not to break 
down the data if you don't want to. ;)

Best,

Tiana

On Thursday, 17 December 2015 21:23:24 UTC+1, Yin Niu wrote:
>
> Hi Tiana, 
>
> Gender/Age report will break down by Gender/Age range AND ad group, that 
> is why you will see multiple rows per gender. 
>
> Thanks,
> Yin, AdWords API Team. 
>

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

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


Criteria Performance Report: No data for BidModifier

2015-12-18 Thread Johannes Burkhardt
Hi,

I successfully pull data from the Adwords API (v201509) with the adhoc 
reporting service.

The API does not return any data for the BidModifier attribute within the 
Criteria_Performance_Report.

Does anyone face the same problem or know what´s going on?

I appreciate any help!

Kind regards,
Johannes

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4045138d-c028-416f-b694-60c94d52e56f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


UI keyword suggestions differ from API results

2015-12-18 Thread Roel
Hello,

I am trying to use the Adwords API to get keyword suggestions for websites. 
While I get results, the results differ hugely from the suggestions I get 
from the UI. I think the suggestions of the UI are much better.

Other topics / documentation seem to suggest that options selected in the 
UI must match the options in the API request. I've tried various options, 
but I cannot get the results to match. 
I have attached a screenshot from the UI options I have selected.
Below is the Python code where you can see the options that I have 
configured:
{
'searchParameters': [
{
'xsi_type': 'RelatedToUrlSearchParameter',
'urls': ['http://php.net']
},
{
'xsi_type': 'LanguageSearchParameter',
'languages': [{'xsi_type': 'Language', 'id': 1010}]
},
{
'xsi_type': 'NetworkSearchParameter',
'networkSetting': [{
'targetGoogleSearch': True,
'targetSearchNetwork': False,
'targetContentNetwork': False,
'targetPartnerSearchNetwork': False
}]
}
],
'ideaType': 'KEYWORD',
'requestType': 'IDEAS',
'requestedAttributeTypes': ['KEYWORD_TEXT'],
'paging': {
'startIndex': 0,
'numberResults': 10
}
}

Does anyone know what could be going wrong?

Regards,
Roel

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fd2eddaa-2c02-4a7b-948d-44bc09cc4e4d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: API keyword suggestions differ with UI keyword suggestions

2015-12-18 Thread Roel
Hello Mike,

Thank you for your response.

I´ve double/checked all settings, but really cannot find the different 
setting that is causing the problem. I have attached a new screenshots in 
English. I've listed the options in the UI and the corresponding API 
setting behind it in blue.
Your product or service: - / -
Your landing page: http://php.net / http://php.net
Your product category: - / -
Targeting location: All locations - Not set. I expect that not setting it 
means all locations are used, but this is not clear from the documentation. 
Setting both to a certain country does not make the results match anyway.
Languague: Dutch / Dutch (language ID 1010)
Networks: Google / targetGoogleSearch is set, other network settings are 
not. I have tried different combinations of these network options, but it 
doesn't make much of a difference.
Negative keywords: - / -
Date range: Show avg. monthly searches for: Last 12 months / Not included 
in the API request. Documentation "Date Range (Monthly Search Volume)" 
links to selecting the "TARGETED_MONTHLY_SEARCHES" attribute type, but this 
does not affect the returned keywords. Changing this in the UI does not 
seem to affect the returned keyword ideas there either.
Keyword filters: - / -
Keyword options: - / -
Keywords to include: - / -

Regards,
Roel

Op donderdag 17 december 2015 18:47:14 UTC+1 schreef Michael Cloonan 
(AdWords API Team):
>
> Hello,
>
> Unfortunately, since your screenshot is in Dutch, it is very difficult for 
> me to comprehend it to compare the settings to those set on the API. 
> However, with identical settings, in theory the two should produce 
> identical results, so I urge you to double-check that everything is the 
> same.
>
> One section of our Targeting Ideas guide is about mapping to the keyword 
> planner 
> ,
>  
> so hopefully this helps.
>
> Regards,
> Mike, AdWords API Team
>
> On Thursday, December 17, 2015 at 8:57:48 AM UTC-5, Roel wrote:
>>
>> Hello,
>>
>> When I use the GoogleAdWords API I can generate keyword suggestions for a 
>> website. When I try to do the same via the API the suggestions differ a 
>> lot. 
>>
>> In my tests I used the website "http://php.net;.
>> The UI will return the following suggestions:
>>
>>- hosting
>>- webhosting
>>- website hosting
>>- dedicated server
>>- vps hosting
>>
>> This while the API request returns:
>>
>>- new extensions
>>- downloads windows
>>- php performance test
>>- php scripting
>>- rc-6
>>
>> I've read several topics about this, but they all seem to indicate 
>> differences between the settings in the UI and in the API request.
>>
>> I have made a picture of my UI configuration:
>>
>> 
>>
>>
>> My parameters in the (Python) code are:
>> language_criteria_id = 1010 # Dutch
>> url = 'http://php.net'
>>
>> {
>> 'searchParameters': [
>> {
>> 'xsi_type': 'RelatedToUrlSearchParameter',
>> 'urls': [url]
>> },
>> {
>> 'xsi_type': 'LanguageSearchParameter',
>> 'languages': [{'xsi_type': 'Language', 'id': 
>> language_criteria_id}]
>> },
>> {
>> 'xsi_type': 'NetworkSearchParameter',
>> 'networkSetting': [{
>> 'targetGoogleSearch': True,
>> 'targetSearchNetwork': False,
>> 'targetContentNetwork': False,
>> 'targetPartnerSearchNetwork': False
>> }]
>> }
>> ],
>> 'ideaType': 'KEYWORD',
>> 'requestType': 'IDEAS',
>> 'requestedAttributeTypes': ['KEYWORD_TEXT'],
>> 'paging': {
>> 'startIndex': 0,
>> 'numberResults': 10
>> }
>> }
>>
>> I have tried different combinations of network settings, but whatever I 
>> do I cannot reproduce the same results as seen in the UI.
>>
>> Does anyone know what is going on?
>>
>> Roel
>>
>>
>>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To 

Need clarity on Ad Customizer

2015-12-18 Thread Kainesh Patel
Hi,

My scenario is that I have a feed with name ad_customizer which is mapped 
to campaign Campaign#1. Campaign#1 has two adGroups AdGroup#1 and AdGroup#2.
AdGroup#1 has positive keyword iphone and AdGroup#2 has keyword samsung 
galaxy.

The contents of feed are:- 

ad_customizer:-
product_nameproduct_discountadgroup_targetingiphone20AdGroup#1samsung galaxy
30--NOT GIVEN--

I have one ad each per adgroup which is exactly same. The headline of ad is 
"Buy {=ad_customizer.product_name} with {=ad_customizer.product_discount} % 
discount"

So ad1 will look like this :- Buy iphone with 20 % discount
and ad2 will look like this:- Buy samsung galaxy with 30 % discount

Now lets say user search for  
Case 1. keyword : iphone 
   Query: What is ad shown? Are  both the ads shown with equal 
probability or only iphone ad will be shown since feed for samsung galaxy 
is not mapped to AdGroup#1.

Case 2:- keyword : samsung galaxy
   Query:- Will any ad be shown or both the ad will be shown or only 
second ad be shown.

This question is to extension of caveat mentioned in the document
https://developers.google.com/adwords/api/docs/guides/ad-customizers

Thanks,
Kainesh


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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d08cd610-66e2-4a8f-a222-6852ff51739c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Feed item disapproved

2015-12-18 Thread Thanet Knack Praneenararat (AdWords API Team)
Hello Siva,

First, I don't think the test or production account is an issue in your 
case.
If I understand you correctly, you've created a feed via API using 
placeholder type ID 10 (Ad Customizers 
)
 
and you tried to set a long string, but was prevented by the system.
You then want to change the placeholder field from STRING to URL_LIST but 
that's not available in this placeholder type, so you couldn't go this way 
either. 

As you can see in the ad customizer guide 
, 
this feed type is aimed to be used in an ad, which originally contains 
quite a limited space for texts.
Ad customizer was created to provide more flexibility in changing the 
values, such as integers, strings, prices.
I think as it's still under the space limit constraint, long URLs are not 
provided as one of the placeholder field for this placeholder type.

I recommend that you re-consider your use case and the reason why you want 
a long URL inside an ad.

Best,
Thanet, AdWords API Team

On Saturday, December 12, 2015 at 1:43:15 PM UTC+9, Siva Arasu wrote:
>
> Hey Guys,
>
> I am uploading dsa data feed in a adwords test account via adwords api. 
> Feed items are being disapproved saying "Value provided is too long". After 
> checking policy data I found that url string length is too long.
>
> But right now we  are uploading the data feed manually ( in production 
> account) by uploading the csv the file which works good and all items are 
> approved. Its the same feed i am trying to upload via api in test account 
> to create a automated feed updation script.
>
>
> 
>
>
> I get this error while the data type for the column 'url' is 'string' and 
> I tried changing the data type to 'URL' when creating a feed (which accepts 
> the url length). But  after that I cannot map this column because there is 
> no place holder value for this type in ad customizer place holder types.
>
> Do I have to use any other place holders types or is this a limitation in 
> test account only?
>
> btw I havent tried uploading in production account using api.
>
> Thanks for your help in advance
>
>

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

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


Re: PHP invalid_grant via oauth? Can someone help me figure out what I am doing wrong?

2015-12-18 Thread James Andrews
Hello Michael,

I was able to get a valid access/refresh token pair using the GoogleLeads api 
code and return data from.  In comparing the tokens returned by Adwords and a 
token returned by the GoogleAPI they are drastically different in string 
length.   Therefore I conclude they are not the same and that we’ll have to 
give users a new way to authenticate for adwords.

While I have someone’s attention.  Can I point out that this would have been 
less painful if somewhere in the documentation it stated that AdwordsAPI Oauth 
was not the same as the GoogleAPI Oauth.

Thanks for the help,
James

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/C40FFDCB-BD37-499B-A6F3-423AE3B6BB4B%40openbridge.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ad showing AWX_

2015-12-18 Thread Anthony Madrigal
Hi George,

Unfortunately, this question is unrelated to AdWords API. I suggest either 
contacting the Google Analytics Community 

 or AdWords Community Forum 
 
since 
they should be best suited to support this issue.

Cheers,
Anthony
AdWords API Team

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/64f86535-428e-4389-abb5-a9a58a519371%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Ad showing AWX_

2015-12-18 Thread george
Adwords ad showing up in analytics as   AWX_ ...  
How do you know which ad it is?

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2f3ebfcb-56ea-4181-8fc0-25f181aa4771%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Receive data using the AdWords API

2015-12-18 Thread 정재엽
hi

using AdWords API ,
click value , impressions value , etc. I want to receive the data. 
How do I fix it?

Thank you.

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3e1762d4-afb1-4fb7-98a1-761116c6f414%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Customer Match API

2015-12-18 Thread Priya Ramachandran

Hi all,

I'm an Account Optimizer working with the Real Estate vertical. One of my 
clients, Beazer’s development team, took a look at the FAQ for the Google 
Customer Match API and had some questions-

1.Is there a need for 2-way data interchange (i.e. anything that 
needs to come back into Salesforce)? Would we want to have anything being 
sent back into SFDC to Beazer from this list?

2.   Are there any existing 3rd party SFDC Apps that are available that 
already perform the functionality of the desired API calls? If so, this 
would be a better approach than writing something from scratch. 


I'd appreciate any information you could provide regarding this!


Thanks,

Priya


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

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


Re: API keyword suggestions differ with UI keyword suggestions

2015-12-18 Thread Michael Cloonan (AdWords API Team)
Hello,

Thank you for the detailed breakdown. I have contacted our engineering team 
about this issue and will let you know when I hear back from them.

Regards,
Mike, AdWords API Team

On Friday, December 18, 2015 at 5:44:56 AM UTC-5, Roel wrote:
>
> Hello Mike,
>
> Thank you for your response.
>
> I´ve double/checked all settings, but really cannot find the different 
> setting that is causing the problem. I have attached a new screenshots in 
> English. I've listed the options in the UI and the corresponding API 
> setting behind it in blue.
> Your product or service: - / -
> Your landing page: http://php.net / http://php.net
> Your product category: - / -
> Targeting location: All locations - Not set. I expect that not setting it 
> means all locations are used, but this is not clear from the documentation. 
> Setting both to a certain country does not make the results match anyway.
> Languague: Dutch / Dutch (language ID 1010)
> Networks: Google / targetGoogleSearch is set, other network settings are 
> not. I have tried different combinations of these network options, but it 
> doesn't make much of a difference.
> Negative keywords: - / -
> Date range: Show avg. monthly searches for: Last 12 months / Not included 
> in the API request. Documentation "Date Range (Monthly Search Volume)" 
> links to selecting the "TARGETED_MONTHLY_SEARCHES" attribute type, but 
> this does not affect the returned keywords. Changing this in the UI does 
> not seem to affect the returned keyword ideas there either.
> Keyword filters: - / -
> Keyword options: - / -
> Keywords to include: - / -
>
> Regards,
> Roel
>
> Op donderdag 17 december 2015 18:47:14 UTC+1 schreef Michael Cloonan 
> (AdWords API Team):
>>
>> Hello,
>>
>> Unfortunately, since your screenshot is in Dutch, it is very difficult 
>> for me to comprehend it to compare the settings to those set on the API. 
>> However, with identical settings, in theory the two should produce 
>> identical results, so I urge you to double-check that everything is the 
>> same.
>>
>> One section of our Targeting Ideas guide is about mapping to the keyword 
>> planner 
>> ,
>>  
>> so hopefully this helps.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Thursday, December 17, 2015 at 8:57:48 AM UTC-5, Roel wrote:
>>>
>>> Hello,
>>>
>>> When I use the GoogleAdWords API I can generate keyword suggestions for 
>>> a website. When I try to do the same via the API the suggestions differ a 
>>> lot. 
>>>
>>> In my tests I used the website "http://php.net;.
>>> The UI will return the following suggestions:
>>>
>>>- hosting
>>>- webhosting
>>>- website hosting
>>>- dedicated server
>>>- vps hosting
>>>
>>> This while the API request returns:
>>>
>>>- new extensions
>>>- downloads windows
>>>- php performance test
>>>- php scripting
>>>- rc-6
>>>
>>> I've read several topics about this, but they all seem to indicate 
>>> differences between the settings in the UI and in the API request.
>>>
>>> I have made a picture of my UI configuration:
>>>
>>> 
>>>
>>>
>>> My parameters in the (Python) code are:
>>> language_criteria_id = 1010 # Dutch
>>> url = 'http://php.net'
>>>
>>> {
>>> 'searchParameters': [
>>> {
>>> 'xsi_type': 'RelatedToUrlSearchParameter',
>>> 'urls': [url]
>>> },
>>> {
>>> 'xsi_type': 'LanguageSearchParameter',
>>> 'languages': [{'xsi_type': 'Language', 'id': 
>>> language_criteria_id}]
>>> },
>>> {
>>> 'xsi_type': 'NetworkSearchParameter',
>>> 'networkSetting': [{
>>> 'targetGoogleSearch': True,
>>> 'targetSearchNetwork': False,
>>> 'targetContentNetwork': False,
>>> 'targetPartnerSearchNetwork': False
>>> }]
>>> }
>>> ],
>>> 'ideaType': 'KEYWORD',
>>> 'requestType': 'IDEAS',
>>> 'requestedAttributeTypes': ['KEYWORD_TEXT'],
>>> 'paging': {
>>> 'startIndex': 0,
>>> 'numberResults': 10
>>> }
>>> }
>>>
>>> I have tried different combinations of network settings, but whatever I 
>>> do I cannot reproduce the same results as seen in the UI.
>>>
>>> Does anyone know what is going on?
>>>
>>> Roel
>>>
>>>
>>>

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

Re: PHP invalid_grant via oauth? Can someone help me figure out what I am doing wrong?

2015-12-18 Thread Michael Cloonan (AdWords API Team)
Hello,

Thank you for the feedback. I will take a closer look at how AdWords OAuth 
differs from other APIs so that we can hopefully improve our documentation.

Regards,
Mike, AdWords API Team

On Friday, December 18, 2015 at 8:49:28 AM UTC-5, James Andrews wrote:
>
> Hello Michael, 
>
> I was able to get a valid access/refresh token pair using the GoogleLeads 
> api code and return data from.  In comparing the tokens returned by Adwords 
> and a token returned by the GoogleAPI they are drastically different in 
> string length.   Therefore I conclude they are not the same and that we’ll 
> have to give users a new way to authenticate for adwords. 
>
> While I have someone’s attention.  Can I point out that this would have 
> been less painful if somewhere in the documentation it stated that 
> AdwordsAPI Oauth was not the same as the GoogleAPI Oauth. 
>
> Thanks for the help, 
> James

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5a36d55f-396e-4b65-b270-87d88aa1ca96%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gender performance report always segmenting by ad group

2015-12-18 Thread Yin Niu
Hi Tiana, 

This hasn't been documented yet. Hopefully the document will be updated in 
the future.  And thanks for your suggestions. I will let the rest of the 
team know. 

Yin, AdWords API Team. 

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

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


Re: ADD ExpressionRuleUserList OPERATION_NOT_SUPPORTED

2015-12-18 Thread Michael Cloonan (AdWords API Team)
Hello,

I apologize; I actually made a mistake. The "choice"-type elements for rule 
items are actually one place where you do use a tag rather than XSI type.

So, for example, the add_rule_based_remarketing_list.rb example from the 
Ruby client library generates a body that looks like this (significantly 
more complicated than what you're trying to do, but still demonstrates 
valid format):

   
  https://adwords.google.com/api/adwords/rm/v201509;>
 
ADD

   Users who checked out in November or December OR visited 
the checkout page with more than one item in their cart
   Expression based user list
   
  
 

   
  ecomm_pagetype
   
   EQUALS
   checkout


   
  cartsize
   
   GREATER_THAN
   1.0

 
  
  
 

   
  checkoutdate
   
   AFTER
   20141031


   
  checkoutdate
   
   BEFORE
   20150101

 
  
   

 
 
ADD

   Date rule user list created at 2015-12-18 09:52:45 
-0500
   Users who visited the site between 20141031 and 
20150331 and checked out in November or December OR visited the checkout page 
with more than one item in their cart
   
  
 

   
  ecomm_pagetype
   
   EQUALS
   checkout


   
  cartsize
   
   GREATER_THAN
   1.0

 
  
  
 

   
  checkoutdate
   
   AFTER
   20141031


   
  checkoutdate
   
   BEFORE
   20150101

 
  
   
   20141031
   20150331

 
  
   


One notable difference is that the operator element has a namespace 
defined. ns0 in this example request is defined on the Envelope as 
xmlns:ns0="https://adwords.google.com/api/adwords/cm/v201509;.

Try specifying the correct namespace on your operator to see if that 
resolves the problem.

Again, I apologize for getting it wrong at first; this is actually one of 
the only places in the API where xsi:type isn't used to differentiate.

Regards,
Mike, AdWords API Team

On Thursday, December 17, 2015 at 6:01:08 PM UTC-5, ra...@woopra.com wrote:
>
> Hi Mike--
>
> I got my client to build a request that looks just like yours, but now i'm 
> getting the error about being unable to construct a ruleItem because it is 
> abstract:
>
> Cannot construct an instance of com.google.ads.api.services.datax.
> userlists.rule.RuleItem because it is abstract.  You are probably missing 
> an @Uses annotation while invoking public abstract com.google.ads.api.
> services.datax.userlists.UserListReturnValue com.google.ads.api.services.
> datax.adwordsuserlist.AdwordsUserListService.mutate(java.util.List) throws 
> com.google.ads.api.services.common.error.ApiException with params [[com.
> google.ads.api.services.datax.adwordsuserlist.v201509.jaxbgen.
> UserListOperation@47c87410]].
>
> I've seen your answers to a couple other posts about similar statements, 
> but the format of the xml requests in the answers in those threads are 
> different enough that I can't adapt them to my own.  Here is the body of my 
> request fixed to look like yours:
>
>
>   
>   https://adwords.google.com/api/adwords/rm/v201509;>
>  
> ADD
> 
>Woopra_test_label_Id
>test_label_Id
>
>   
>

Re: Criteria Performance Report: No data for BidModifier

2015-12-18 Thread Yin Niu
Hi Johannes,

Could you please provide your clientCustomerId and the query for above 
report? Please click *Reply privately* *to author* in the forum when 
responding.

Thanks,
Yin, AdWordsAPI Team.

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/51879c4e-0682-44dd-bb2c-61f1d49129d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gender performance report always segmenting by ad group

2015-12-18 Thread Tiana S.
Hi Yin,

Thank's for your help! Just doesn't make sense to me that when you don't 
request any segmentation it's still segmented... ;)

Best,

Tiana

On Friday, 18 December 2015 15:40:46 UTC+1, Yin Niu wrote:
>
> Hi Tiana, 
>
> This hasn't been documented yet. Hopefully the document will be updated in 
> the future.  And thanks for your suggestions. I will let the rest of the 
> team know. 
>
> Yin, AdWords API Team. 
>

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

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


Re: API connection between Oracle and Adwords

2015-12-18 Thread KM
Hi Michael

Thanks for your reply. I had a check, really useful. The field "costs" in 
the reporting is not really what I need. What we are looking for is to have 
the billing cost and not the costs mentioned in campaign report. 

Do you see what I means ?

Many thanks
Kevin

On Monday, 14 December 2015 19:00:44 UTC+1, Michael Cloonan (AdWords API 
Team) wrote:
>
> Hello,
>
> You can fetch statistics from the AdWords API using reporting 
> . For 
> example, the Campaign Performance Report 
> 
>  
> has statistics like clicks, impressions, and conversions broken down at the 
> campaign level. Here is a page indexing all of the available report types: 
> https://developers.google.com/adwords/api/docs/appendix/reports
>
> The reporting basics guide, linked above, will go into details on how to 
> filter, for example by last month or a custom time frame. There are also 
> examples of how to run reports in each client library 
> .
>
> Regards,
> Mike, AdWords API Team
>
> On Monday, December 14, 2015 at 8:58:24 AM UTC-5, Ketida wrote:
>>
>> Hi there
>>
>> I need your advice because I'm not a technical guy.
>>
>> We actually use a intern tool to manage our client orders, invoices, etc. 
>> The platform is developed in Oracle, Apex, Javascript,.. 
>>
>> Everything is managed manually which means that every months we input 
>> real costs spend in Adwords (via an Agency MCC) by our clients (amount that 
>> Google charges us and that we then charge to our client). The objective 
>> will then to add more metrics (conversions, CPA,...) but the priority is 
>> the media spend (not the costs but well the invoice spend). 
>>
>> Period time frame : last month.
>>
>> Is someone have more documentation about the process, which variables we 
>> have to call, which repetition, etc ? It will be really appreciate :)
>>
>> Thanks in advance for your advice/support
>>
>> K
>>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b2cb8cb0-6c08-4bee-91e8-7306e03630b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to get the list (with names) seen on the "Where ads were shown" tab?

2015-12-18 Thread Josh Radcliff (AdWords API Team)
Hi Tiana,

Have you tried using the URL_PERFORMANCE_REPORT 
?
 
That report is essentially the *PLACEMENT_PERFORMANCE_REPORT*, but with an 
additional Url 

 field 
that contains the URL where your ad was displayed.

Thanks,
Josh, AdWords API Team

On Monday, November 30, 2015 at 10:35:06 AM UTC-5, Tiana S. wrote:
>
> Hi again,
>
> Just had a go with the IsRestrict setting, but it doesn't seem to return 
> anything differently when I set it to false. I still only see the usual '
> youtube.com', 'dailymail.co.uk' etc. in the Criteria field as seen on the 
>  'Managed' tab instead of the Names shown on the 'Where ads were shown' tab.
> Thanks though. :) Any other ideas what might return what I'm looking for?
>
> Best,
>
> Tiana
>
> On Thursday, 26 November 2015 17:41:51 UTC+1, Danial Klimkin wrote:
>>
>> Hello Tiana,
>>
>>
>> Please see if the Placement performance report 
>> 
>>  
>> with IsRestrict == false returns the data you expect.
>>
>>
>> -Danial, AdWords API Team.
>>
>>
>> On Thursday, November 26, 2015 at 3:07:35 PM UTC+1, Tiana S. wrote:
>>>
>>> I've been using the Placement performance report for a while, but 
>>> noticed there's a second tab in the AdWords interface: "where ads were 
>>> shown". The list of placements there shows for example the names of videos 
>>> the ad was shown at:
>>>
>>>
>>> 
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> I looked around in the API documentation looking for a way to retrieve 
>>> this list as well, but haven't been successful yet.
>>> Does anyone know how to fetch this?
>>> 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/77fa8819-c06b-448c-bae8-f50a78470994%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dynamics Remarketing ads for retail

2015-12-18 Thread Josh Radcliff (AdWords API Team)
Hi,

The AdWords API lets you manage the feed items for dynamic remarketing ads, 
but it does not support creating the dynamic display ads (with Template Ad 
ID 416) themselves. Therefore, you'll need to create the ads through the 
user interface first. After that, you'll be able to use the API to 
add/remove/update the dynamic data used for those ads.

For more info on managing your feed items for dynamic remarketing ads, 
check out our Dynamic Remarketing guide 
.

Thanks,
Josh, AdWords API Team

On Thursday, December 17, 2015 at 5:21:48 PM UTC-5, Ezequiel Murillo wrote:
>
> Sorry, I think I didn't explain myself as I should have. I want to create 
> an ad for a Dynamic Remarketing Campaign in the Display Network, not a 
> Shopping campaign.
> I would also like to have a many products in a single ad, so that's what I 
> thought I would need a Template ad, I guess an html5 template ad. 
> The type of ad I want to create using the API is like the one explained 
> here:
>
> https://support.google.com/adwords/answer/3265299?hl=en
>
> When I create them using the UI I just choose a template and the images 
> and everything are pulled from my Merchant Center. I'm just not sure how to 
> do that from the API. 
> I dont find the one in:
> https://developers.google.com/adwords/api/docs/guides/template-ads
> very informative.
>
> 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/009a6c49-ff65-4733-af13-397ec43cba8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: API connection between Oracle and Adwords

2015-12-18 Thread Michael Cloonan (AdWords API Team)
Hello,

The API doesn't support billing costs. There is no way, for example, to 
look up transactions or owed amounts. The best you can do is look up costs 
incurred by specific campaigns, ad groups, etc over a period of time, as 
you've found.

Regards,
Mike, AdWords API Team

On Friday, December 18, 2015 at 1:33:49 PM UTC-5, KM wrote:
>
> Hi Michael
>
> Thanks for your reply. I had a check, really useful. The field "costs" in 
> the reporting is not really what I need. What we are looking for is to have 
> the billing cost and not the costs mentioned in campaign report. 
>
> Do you see what I means ?
>
> Many thanks
> Kevin
>
> On Monday, 14 December 2015 19:00:44 UTC+1, Michael Cloonan (AdWords API 
> Team) wrote:
>>
>> Hello,
>>
>> You can fetch statistics from the AdWords API using reporting 
>> . For 
>> example, the Campaign Performance Report 
>> 
>>  
>> has statistics like clicks, impressions, and conversions broken down at the 
>> campaign level. Here is a page indexing all of the available report types: 
>> https://developers.google.com/adwords/api/docs/appendix/reports
>>
>> The reporting basics guide, linked above, will go into details on how to 
>> filter, for example by last month or a custom time frame. There are also 
>> examples of how to run reports in each client library 
>> .
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Monday, December 14, 2015 at 8:58:24 AM UTC-5, Ketida wrote:
>>>
>>> Hi there
>>>
>>> I need your advice because I'm not a technical guy.
>>>
>>> We actually use a intern tool to manage our client orders, invoices, 
>>> etc. The platform is developed in Oracle, Apex, Javascript,.. 
>>>
>>> Everything is managed manually which means that every months we input 
>>> real costs spend in Adwords (via an Agency MCC) by our clients (amount that 
>>> Google charges us and that we then charge to our client). The objective 
>>> will then to add more metrics (conversions, CPA,...) but the priority is 
>>> the media spend (not the costs but well the invoice spend). 
>>>
>>> Period time frame : last month.
>>>
>>> Is someone have more documentation about the process, which variables we 
>>> have to call, which repetition, etc ? It will be really appreciate :)
>>>
>>> Thanks in advance for your advice/support
>>>
>>> K
>>>
>>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8fe2de75-c4a4-43c3-9484-4db1f5e1f0aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ADD ExpressionRuleUserList OPERATION_NOT_SUPPORTED

2015-12-18 Thread ralph
Giving this a try.  Still working on it but the first attempts have given 
me Unmarshalling errors i think due to "prefix unbound" right at the end of 
:
 
http://schemas.xmlsoap.org/soap/envelope/;>soap:ClientUnmarshalling
 
Error: ParseError at [row,col]:[1,761]\nMessage: 
http://www.w3.org/TR/1999/REC-xml-names-19990114#ElementPrefixUnbound?ns0ns0:operator
 


This is my first time interacting with soap api so Im not sure if this 
could be related to my envelope being off or what.  Trying more things now. 
 

Oh here's the whole request btw in case you can spot something faster: 

Ok something is wrong because my xml formatter throws the same error so 
here it is raw:

http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;  xmlns:tns=
"https://adwords.google.com/api/adwords/rm/v201509; xmlns:jaxb=
"http://java.sun.com/xml/ns/jaxb; xmlns:cm=
"https://adwords.google.com/api/adwords/cm/v201509;
>https://adwords.google.com/api/adwords/rm/v201509; xmlns=
"https://adwords.google.com/api/adwords/rm/v201509;>
Woopra:AppConnect:getTrackersX
4579826953
https://adwords.google.com/api/adwords/rm/v201509;
>ADDWoopra_test_label_IdThis 
User List has been created to mirror the woopra label.
test_label_Id

Woopra_test_label_IdEQUALStrue






On Thursday, December 17, 2015 at 3:01:08 PM UTC-8, ra...@woopra.com wrote:
>
> Hi Mike--
>
> I got my client to build a request that looks just like yours, but now i'm 
> getting the error about being unable to construct a ruleItem because it is 
> abstract:
>
> Cannot construct an instance of com.google.ads.api.services.datax.
> userlists.rule.RuleItem because it is abstract.  You are probably missing 
> an @Uses annotation while invoking public abstract com.google.ads.api.
> services.datax.userlists.UserListReturnValue com.google.ads.api.services.
> datax.adwordsuserlist.AdwordsUserListService.mutate(java.util.List) throws 
> com.google.ads.api.services.common.error.ApiException with params [[com.
> google.ads.api.services.datax.adwordsuserlist.v201509.jaxbgen.
> UserListOperation@47c87410]].
>
> I've seen your answers to a couple other posts about similar statements, 
> but the format of the xml requests in the answers in those threads are 
> different enough that I can't adapt them to my own.  Here is the body of my 
> request fixed to look like yours:
>
>
>   
>   https://adwords.google.com/api/adwords/rm/v201509;>
>  
> ADD
> 
>Woopra_test_label_Id
>test_label_Id
>
>   
>  
> 
>Woopra_test_label_Id
> 
> EQUALS
> true
>  
>   
>
> 
>  
>   
>
>
>
>
> thanks
> --Ralph
>
>
> On Wednesday, December 16, 2015 at 7:01:17 AM UTC-8, Michael Cloonan 
> (AdWords API Team) wrote:
>>
>> Hello,
>>
>> Rather than have a tag , you should have > xsi:type="ExpressionRuleUserList">. The fields for the 
>> ExpressionRuleUserList go directly within the operand. Similarly, instead 
>> of , you should have , and 
>> then the StringRuleItem attributes go directly within the  tag. Just 
>> to make it cleaner, you should also remove the  altogether, rather than 
>> specifying it as nil.
>>
>> I am confused about why you're getting an error pointing to the operator, 
>> but hopefully cleaning up the operand to have the correct format by 
>> following the instructions above will fix it anyway.
>>
>> Just to be clear, the SOAP body you posted most recently, with 
>> corrections, should look like this:
>>
>>  
>>   https://adwords.google.com/api/adwords/rm/v201509;>
>>  
>> ADD
>> 
>>Woopra Label: test-label-Id
>>test-label-Id
>>
>>   
>>  
>> Woopra_Label-test-label-Id
>> EQUALS
>> true
>>  
>>   
>>
>> 
>>  
>>   
>>
>>
>> Regards,
>> Mike, AdWords API Team
>>
>>
>> On Wednesday, December 16, 2015 at 2:28:48 AM UTC-5, ra...@woopra.com 
>> wrote:
>>>
>>> Ok I have tried probably 30 combinations now.  I still get the same 
>>> error: 
>>>
>>> `[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], 
>>> RequiredError.REQUIRED @ operations[0].operator]`
>>>
>>> Unless I mess up the whole operation in which case it adds to the errors 
>>> list: `RequiredError.REQUIRED @ operations[0].operand` Which happens when I 
>>> try and wrap the operator/operand pair in another object like 
>>> "UserListOperation"
>>> So what this means to me is that the operand is not being read correctly.
>>>
>>> I'm not sure exactly what you meant by "You need to use the 
>>> ExpressionRuleUserList 

Re: Receive data using the AdWords API

2015-12-18 Thread Yin Niu
Hello, 

You could use AdWords Reports 
 to get 
data for Clicks 

, Impressions 
,
 
etc. 

Thanks,
Yin, AdWords API Team. 

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3d8ca3ce-f9ec-4092-bb56-41801dbc0698%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dynamics Remarketing ads for retail

2015-12-18 Thread Josh Radcliff (AdWords API Team)
Hi Ezequiel,

Not a silly question at all. :) I just gave that template ID as an example. 
The user interface lets you create a variety of TemplateAds for dynamic 
remarketing, but at this time none of them are supported by the API.

Thanks,
Josh, AdWords API Team

On Friday, December 18, 2015 at 4:14:00 PM UTC-5, Ezequiel Murillo wrote:
>
> Thanks, 
>
> One last silly question!
> When you referred to the Template Ad ID 416, did you meant it as an 
> example? I just made a Dynamic Ad for my products, called the ad from the 
> API and it told me it had the Template Ad ID 311. 
> I guess the're many templates so, again, sorry for the silly 
> question...I'm just wondering why you would have mentioned a specific 
> Template.
>
>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/856cff5a-d5f6-4005-a9b5-302225f62546%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dynamics Remarketing ads for retail

2015-12-18 Thread Ezequiel Murillo
Thanks, 

One last silly question!
When you referred to the Template Ad ID 416, did you meant it as an 
example? I just made a Dynamic Ad for my products, called the ad from the 
API and it told me it had the Template Ad ID 311. 
I guess the're many templates so, again, sorry for the silly question...I'm 
just wondering why you would have mentioned a specific Template.


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

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


Re: Need clarity on Ad Customizer

2015-12-18 Thread Umesh Dengale
Hi Kainesh,

This forum is related to AdWords API. Your questions are related to the 
AdWords product side. Could you please post these questions in the AdWords 
community 
? 
Someone from AdWords product support will help.

Thanks,
Umesh, AdWords API Team.

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

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


Re: Dynamics Remarketing ads for retail

2015-12-18 Thread Josh Radcliff (AdWords API Team)
Hi,

I can't comment on when or if this feature will be added, but I know there 
have been other users interested in this as well, so we'll take that into 
consideration when planning the next release of the AdWords API.

Thanks,
Josh, AdWords API Team

On Friday, December 18, 2015 at 3:55:08 PM UTC-5, Ezequiel Murillo wrote:
>
> Thanks Josh,
>
> Do you know if there are any plans to add this feature in the not so 
> distant future?
>
> Cheers
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/eb7064bd-48a0-4d2b-8162-39e15bc8852f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dynamics Remarketing ads for retail

2015-12-18 Thread Ezequiel Murillo
Thanks Josh,

Do you know if there are any plans to add this feature in the not so 
distant future?

Cheers

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/314522de-a9b5-4cfe-a7df-6b9a0d3dffa8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need clarity on Ad Customizer

2015-12-18 Thread Kainesh Patel
Hi,
I can see only questions there. How to create a new question on this
forum AdWords
community

?

Thanks,
Kainesh

On Sat, Dec 19, 2015 at 3:33 AM, Umesh Dengale <
adwordsapiadvisor+um...@google.com> wrote:

> Hi Kainesh,
>
> This forum is related to AdWords API. Your questions are related to the
> AdWords product side. Could you please post these questions in the AdWords
> community
> ?
> Someone from AdWords product support will help.
>
> Thanks,
> Umesh, AdWords API Team.
>
> --
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and Google+:
> https://googleadsdeveloper.blogspot.com/
> https://plus.google.com/+GoogleAdsDevelopers/posts
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> You received this message because you are subscribed to the Google
> Groups "AdWords API Forum" group.
> To post to this group, send email to adwords-api@googlegroups.com
> To unsubscribe from this group, send email to
> adwords-api+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/adwords-api?hl=en
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "AdWords API Forum" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/adwords-api/uTtbpzYIG5o/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> adwords-api+unsubscr...@googlegroups.com.
> Visit this group at https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/adwords-api/c9d46065-0eab-4a57-a163-a9caca0f5cde%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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CANHs%3DrsqoXD2y7ZrLTF1pQRTzXpQyQmr_MkO2p2e4ZVqY1drRw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.