Re: CampaignIteraror not selecting all campaigns

2018-11-19 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

My apologies as we can only provide support to issues/concerns related to 
AdWords API. Since your concern is specific to AdWords Scripts, I would 
recommend that you post your concern in the AdWords Scripts Forum 
.

Best regards,
Luis
AdWords API Team

On Tuesday, November 20, 2018 at 12:00:28 PM UTC+8, sshriamb wrote:
>
> Hi,
>
> I am running a very basic script to get all the campaigns, however, the 
> script is only giving me 44 campaigns and all of them are paused. I am not 
> able to figure out why. For context, my account has 258 campaigns of which 
> 45 are actives. The script is not even giving us all paused campaigns, it 
> is just showing some paused campaigns. I tried running it on multiple 
> accounts, but it does not work.
>
> function main() {
>   var campaignIterator = AdWordsApp.campaigns().get();
>   Logger.log('Total campaigns found : ' +
>   campaignIterator.totalNumEntities());
>   while (campaignIterator.hasNext()) {
> var campaign = campaignIterator.next();
> Logger.log(campaign.getName());
>   }
> }
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/a0a7ec3a-8d2f-4d18-839d-24cb49d8510a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWords Editor CSV import - How do you identify entities uniquely?

2018-11-19 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Ales,

We provide support for AdWords API concerns only. That said, my apologies 
as the AdWords Editor is already outside of our expertise. For further 
assistance, you can reach out to the product experts via the Ads Community 
Forum  as 
they are better equipped to assist you regarding this.

Thanks and regards,
Peter
AdWords API Team

On Tuesday, November 20, 2018 at 12:00:28 PM UTC+8, a...@trueclicks.com 
wrote:
>
> Hello,
> I have a question about programmatically constructing an AdWords Editor 
> CSV import.
>
> The documentation says that in order to *update *and entity, we should 
> provide mandatory columns with #Original suffix. I can use AdWords Editor 
> to find out which columns are mandatory. Nevertheless we found out that 
> mandatory column does not necessarily identifies specific entity (ad, 
> keyword, sitelink, etc.).
>
> *Here is an example for shared sitelinks*
>
> - The documentation says that those are the mandatory columns (those with 
> #Original suffix):
>
> *Link Text#Original Description Line 1 Description Line 2 Description Line 
> 1#Original Description Line 2#Original*
>
> - Those sitelinks are not sufficiently identifying a single sitelink though
> - You can have more than one sitelink in your account with the same Link 
> Text, Description Line1 and Description Line 2
> - In my case it several sitelinks that differ in destination url
> - I wonder, is there documented anywhere which combination of columns 
> identifies uniquely sitelink and eventually, any other entity such as ad, 
> keyword, etc?
>
>
> We need to avoid that user updates more than one entity with our generated 
> AdWords Editor import.
>
>
> Best,
>  Ales
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/627d434c-0008-4043-8150-0cfb7b059114%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to Update Product Partition Tree for an Adgroup?

2018-11-19 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Nellle,

Kindly refer to the AddProductPartitionTree 

 code 
example in Python. The diagram shown here 
 
is 
a sample which shows how to use product groups in your campaigns. You could 
also check the help center 
 article for more 
details. Any node that is not being further subdivided will be a UNIT. 

If the node is being further subdivided, that should be a SUBDIVISION. Each 
subdivision should always be completely partitioned by including a Others 
node (this will have everything else in that category). Also, you need to 
make sure that the tree is complete after you modify the product partition 
tree (see modifying product partition trees section 

 for 
more information). 

Let me know if you have further clarifications.

Thanks,
Luis
AdWords API Team

On Tuesday, November 20, 2018 at 4:56:43 AM UTC+8, Nellle Rickchards wrote:
>
> Creating a product partition tree straight is forward when following your 
> guide (
> https://developers.google.com/adwords/api/docs/samples/python/shopping-campaigns#build-a-product-partition-tree-for-an-ad-group
> ).
>
> But how do we update a partition tree? For example my tree is subdivide by 
> brands. If my store begins selling a new brand, how would I update my 
> portion tree to include it? I'm having trouble finding any documentation on 
> this.
>
> My scripts are written in Python.
>
> Thanks :-)
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/d5e5824c-c1ee-4c05-b294-d56652a7bbdd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: WSDL for Adwords API

2018-11-19 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Aravind,

You can refer to the API Call Structure 
 guide 
on how WSDLs and the SOAP request and response XML of the AdWords API calls 
look like. Let me know if this is what you're looking for.

Thanks and regards,
Peter
AdWords API Team

On Tuesday, November 20, 2018 at 12:00:28 PM UTC+8, aravi...@amazon.com 
wrote:
>
> Hi,
>
> We currently use Adwords client jars provided by to create and manage 
> entities on Adwords. We have client handles to other Ad systems as well. We 
> are looking to standardize client creation in-house. A WSDL for different 
> Adwords API versions would go a long way in helping us. Please let me know 
> if such WSDL's are available to customers of Adwords and how customers can 
> access them.
>
> Thanks
> Aravind
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/eddf5a38-4d52-48d3-861a-b974672aa73a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords API Beta returning StatusCode.INVALID_ARGUMENT

2018-11-19 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

Based on your error, the issue seems to be related to the Python client 
library rather than the Google Ads API Beta. I would suggest to post this 
issue in this link  as 
the Python client library owners are better equipped to assist you here.

Thanks and regards,
Luis
AdWords API Team

On Tuesday, November 20, 2018 at 12:00:28 PM UTC+8, GC wrote:
>
> Hi there,
>
> I tried the sample code from 
> https://github.com/googleads/google-ads-python/blob/master/examples/v0/account_management/get_account_information.py
>  
> with no modifications other than pointing to the correct yaml config file. 
> I also used a customer id of a test account and the developer_token of an 
> MCC account. I'm getting the following all of the time:
>
> grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated with:
> status = StatusCode.INVALID_ARGUMENT
> details = "Request contains an invalid argument."
> debug_error_string = "{"created":"@1542673400.001406000","
> description":"Error received from peer","file":"src/core/lib/surface/call.
> cc","file_line":1017,"grpc_message":"Request contains an invalid argument.
> ","grpc_status":3}"
> >
>
>
> The older SOAP API works just fine. I've double checked the 
> developer_token, client_id, client_secret, and refresh_token so I'm not 
> sure what's going on.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/a2ee0096-b9b1-451c-afb9-28f97ba90362%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to Select Multiple Product Item by ProductOfferId Class

2018-11-19 Thread faizan . zulfiqar
Hello Teja

I Understand the use of ProductPartitionTree and AdGroupCriterionService, I 
have also successfully created a product based on product dimension but
My Question is I need to select multiple Item ids from ProductOfferId as 
product dimension
how can i do that ?

Thank you

On Tuesday, November 20, 2018 at 1:08:18 AM UTC+5, Teja Makani wrote:
>
> Hello Faizan,
>
> You could create product partitions via AdWords API using 
> AdGroupCriterionService 
> 
>  by 
> creating a ProductPartitionTree 
>  
> as 
> shown in this AddProductPartitionTree.java 
> 
>  example, 
> code samples in other languages can be found here 
> . To 
> create a product partition based on the offer id, you will need to use the 
> ProductOfferId 
> 
>  as 
> product dimension. If your question is different please elaborate.
>
> Regards,
> Sai Teja, AdWords API Team.
>
> On Monday, November 19, 2018 at 8:14:33 AM UTC-5, faizan@arpatech.com 
>  wrote:
>>
>> Hello
>>
>> I need to make a product of selected product. I have searched and found 
>> out that we can achieve it via ProductOfferId Partition Type Class but my 
>> question is how can we assign multiple items ?
>> Waiting for your answer
>>
>>
>> Thank you
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/a4cdb20c-66fd-4ac4-b73a-febf0924d2ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdWords Editor CSV import - How do you identify entities uniquely?

2018-11-19 Thread ales
Hello,
I have a question about programmatically constructing an AdWords Editor CSV 
import.

The documentation says that in order to *update *and entity, we should 
provide mandatory columns with #Original suffix. I can use AdWords Editor 
to find out which columns are mandatory. Nevertheless we found out that 
mandatory column does not necessarily identifies specific entity (ad, 
keyword, sitelink, etc.).

*Here is an example for shared sitelinks*

- The documentation says that those are the mandatory columns (those with 
#Original suffix):

*Link Text#Original Description Line 1 Description Line 2 Description Line 
1#Original Description Line 2#Original*

- Those sitelinks are not sufficiently identifying a single sitelink though
- You can have more than one sitelink in your account with the same Link 
Text, Description Line1 and Description Line 2
- In my case it several sitelinks that differ in destination url
- I wonder, is there documented anywhere which combination of columns 
identifies uniquely sitelink and eventually, any other entity such as ad, 
keyword, etc?


We need to avoid that user updates more than one entity with our generated 
AdWords Editor import.


Best,
 Ales

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/92bb428c-1f4f-46ca-9bac-7a83ec746345%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adwords API Beta returning StatusCode.INVALID_ARGUMENT

2018-11-19 Thread GC
Hi there,

I tried the sample code from 
https://github.com/googleads/google-ads-python/blob/master/examples/v0/account_management/get_account_information.py
 
with no modifications other than pointing to the correct yaml config file. 
I also used a customer id of a test account and the developer_token of an 
MCC account. I'm getting the following all of the time:

grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Request contains an invalid argument."
debug_error_string = "{"created":"@1542673400.001406000","
description":"Error received from peer","file":"src/core/lib/surface/call.cc
","file_line":1017,"grpc_message":"Request contains an invalid argument.","
grpc_status":3}"
>


The older SOAP API works just fine. I've double checked the 
developer_token, client_id, client_secret, and refresh_token so I'm not 
sure what's going on.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/ab65d515-f039-4780-aa8b-7478762cb25a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


CampaignIteraror not selecting all campaigns

2018-11-19 Thread sshriamb
Hi,

I am running a very basic script to get all the campaigns, however, the 
script is only giving me 44 campaigns and all of them are paused. I am not 
able to figure out why. For context, my account has 258 campaigns of which 
45 are actives. The script is not even giving us all paused campaigns, it 
is just showing some paused campaigns. I tried running it on multiple 
accounts, but it does not work.

function main() {
  var campaignIterator = AdWordsApp.campaigns().get();
  Logger.log('Total campaigns found : ' +
  campaignIterator.totalNumEntities());
  while (campaignIterator.hasNext()) {
var campaign = campaignIterator.next();
Logger.log(campaign.getName());
  }
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/346c1596-539b-47fb-854d-a9ab13887c5c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


WSDL for Adwords API

2018-11-19 Thread aravinns via AdWords API and Google Ads API Forum
Hi,

We currently use Adwords client jars provided by to create and manage 
entities on Adwords. We have client handles to other Ad systems as well. We 
are looking to standardize client creation in-house. A WSDL for different 
Adwords API versions would go a long way in helping us. Please let me know 
if such WSDL's are available to customers of Adwords and how customers can 
access them.

Thanks
Aravind

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/f0aaf0be-88ef-4c6e-b4e5-6915d4d03d8c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Get all userlists on an account and list their names and id's in java

2018-11-19 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Thomas,

The selector fields are case-sensitive. You could try using "Id" and "Name" 
in your selector 

 with 
proper capitalization. If this does not solve the problem, could you 
provide the complete SOAP request and response logs so I could investigate 
this further? You may send them to me via the *reply privately to author*
 option.

Regards,
Dannison
AdWords API Team

On Tuesday, November 20, 2018 at 4:29:44 AM UTC+8, Thomas Bisballe wrote:
>
> How do i get all userlists from an account and list all their names and 
> id's.
>
> When i run
>
> AdwordsUserListServiceInterface userListService = 
> adWordsServices.get(session,AdwordsUserListServiceInterface.class);
> Selector serviceSelector = new Selector();
> String[] fields = {"id","name"};
> serviceSelector.setFields(fields);
> UserListPage result = userListService.get(serviceSelector);
>
> i get invalid field ids error
>
> But on the page
>
>
> https://developers.google.com/adwords/api/docs/reference/v201806/AdwordsUserListService.UserList
>
> id and name are valid id's
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/f669b10d-c999-4fa9-8a3b-55f9bb572a70%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: refreshtoken user not in mi hierachy account

2018-11-19 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Juan,

You can get the client customer Id of an account via API only when the user 
making the API call has access to the account or the account is linked to 
any of the Manager accounts in the hierarchy. You could find the client 
customer Id(eg: 123-456-7890) on top right corner of the account via UI. To 
link accounts you could use ManagedCustomerService.mutatelink 

 
operation. You could refer this guide 

 
to know more about ManagedCustomerService. Please let me know if you have 
any further questions.

Regards,
Sai Teja, AdWords API Team.

On Monday, November 19, 2018 at 6:08:12 AM UTC-5, juan@norte.digital wrote:
>
> Hello, I am trying to consume the adswords API with a refresh token 
> generated after the user grants me the permissions, following this guide
>
> https://github.com/googleads/googleads-php-lib/wiki/API-access-on-behalf-of-your-clients-(web-flow)
>
> unfortunately I do not get the results I want,
> my question is: does that generated refreshtoken work with accounts that 
> are not in the account hierarchy of the developer token?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/4667b16b-5687-4831-a1ac-2bd4e1d867c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't enable autotagging

2018-11-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, 

The ACTION_NOT_PERMITTED 

 error 
is caused by unauthorized invocation of a service's method (get, mutate, 
etc.). Since Parallel Tracking is required for all the accounts from Oct 
30, 2018 you will not be able to make any changes to this field. Can you 
try the API call again by removing the customer.setParallelTrackingEnabled(
false); or you can set the customer.setParallelTrackingEnabled(null); and 
retry the request?

Thanks,
Bharani, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/8276fff3-55e2-42e4-9774-5815e5409dda%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to Update Product Partition Tree for an Adgroup?

2018-11-19 Thread Nellle Rickchards
Creating a product partition tree straight is forward when following your 
guide 
(https://developers.google.com/adwords/api/docs/samples/python/shopping-campaigns#build-a-product-partition-tree-for-an-ad-group).

But how do we update a partition tree? For example my tree is subdivide by 
brands. If my store begins selling a new brand, how would I update my 
portion tree to include it? I'm having trouble finding any documentation on 
this.

My scripts are written in Python.

Thanks :-)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/e55f95ab-dc0b-48c4-a300-577da28b2616%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Get all userlists on an account and list their names and id's in java

2018-11-19 Thread Thomas Bisballe
How do i get all userlists from an account and list all their names and 
id's.

When i run

AdwordsUserListServiceInterface userListService = 
adWordsServices.get(session,AdwordsUserListServiceInterface.class);
Selector serviceSelector = new Selector();
String[] fields = {"id","name"};
serviceSelector.setFields(fields);
UserListPage result = userListService.get(serviceSelector);

i get invalid field ids error

But on the page

https://developers.google.com/adwords/api/docs/reference/v201806/AdwordsUserListService.UserList

id and name are valid id's

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/e67e322f-24bf-43bc-9150-6f3e891821ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to Select Multiple Product Item by ProductOfferId Class

2018-11-19 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Faizan,

You could create product partitions via AdWords API using 
AdGroupCriterionService 

 by 
creating a ProductPartitionTree 
 
as 
shown in this AddProductPartitionTree.java 

 example, 
code samples in other languages can be found here 
. To create 
a product partition based on the offer id, you will need to use the 
ProductOfferId 

 as 
product dimension. If your question is different please elaborate.

Regards,
Sai Teja, AdWords API Team.

On Monday, November 19, 2018 at 8:14:33 AM UTC-5, 
faizan.zulfi...@arpatech.com wrote:
>
> Hello
>
> I need to make a product of selected product. I have searched and found 
> out that we can achieve it via ProductOfferId Partition Type Class but my 
> question is how can we assign multiple items ?
> Waiting for your answer
>
>
> Thank you
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/24242d4f-9e85-4d24-98eb-dc5543035c81%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords API - Product Partition: KeyError: None

2018-11-19 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Neil,

To better investigate the issue, could you provide the complete SOAP 
request and response logs when the error was encountered via *Reply 
privately to author*? If you have not yet enabled logging, you may refer to 
this guide 

 on 
how to do so.

Regards,
Dannison
AdWords API Team

On Tuesday, November 20, 2018 at 1:01:11 AM UTC+8, Nellle Rickchards wrote:
>
> Hello,
>
> I'm following the "Build a product partition tree for an ad group" example 
> in Python (
> https://developers.google.com/adwords/api/docs/samples/python/shopping-campaigns#build-a-product-partition-tree-for-an-ad-group
> )
>
> I ran the code after I updated the adgroup and merchant ids. The new 
> product partition appear in the Adwords UI however the script is outputting 
> the following error:
>
> Traceback (most recent call last):
>   File "shopping_adgroup.py", line 207, in 
> main(adwords_client, ADGROUP_ID)
>   File "shopping_adgroup.py", line 162, in main
> children[adgroup_criterion['criterion']['parentCriterionId']].append(
> KeyError: None
>
> Any idea why this is happening? 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/20c4101a-7028-4404-9e8f-c9743505353f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dynamics Remarketing ads with different feeds

2018-11-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, 

You will be able to setup the Dynamic Display Ad feeds through the AdWords 
user interface and capture the FeedIds or use the AdWords API to create the 
feeds for use with the Dynamic Remarketing Ads. Please refer to this guide 
 for 
guidance on Dynamic Remarketing. You may also check the code samples here 

 as 
a reference. Code samples in other languages can be found here 
. Can you 
take a look at these and let me know if you have any questions?

Thanks,
Bharani, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/0c307a72-631a-42f4-b8ea-8631241f2e8b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I accidentidentally uploaded the same offline conversion file twice (using the Adwords API) - how do I cancel the second one?

2018-11-19 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Emma,

Looks like they have uploaded duplicate conversions by accident, although 
duplicate uploads of a conversion (same GCLID, name, and time) are 
permitted, only the first instance is recorded. Which means, no action is 
needed from their end. You could refer this guide 

 for 
more information. Please let me know if you have any further questions.

Regards,
Sai Teja, AdWords API Team.

On Monday, November 19, 2018 at 6:07:01 AM UTC-5, Emma Combes wrote:
>
> They both claimed to be uploaded successfully - I don't want duplicates of 
> all the conversions!
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/b6bb32d1-b992-41cb-a71e-debcd39657c8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: refreshtoken user not in mi hierachy account

2018-11-19 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Juan,

>From the screenshot shared I see that you are facing USER_PERMISSION_DENIED 

 error. 
Which means that there is no link between the manager account authenticated 
in the request and the client account specified in the headers. You need to 
make sure the user authenticating the API call must have access to the 
account targeted in the API call. You could refer this article 

 to 
grant access to the user, before granting the access please refer to this 
access 
level guide . 
Please note that an approved developer token can be used to make API calls 
against any AdWords account. Please let me know if you have any further 
questions. 

Regards,
Sai Teja, AdWords API Team.

On Monday, November 19, 2018 at 6:08:12 AM UTC-5, juan@norte.digital wrote:
>
> Hello, I am trying to consume the adswords API with a refresh token 
> generated after the user grants me the permissions, following this guide
>
> https://github.com/googleads/googleads-php-lib/wiki/API-access-on-behalf-of-your-clients-(web-flow)
>
> unfortunately I do not get the results I want,
> my question is: does that generated refreshtoken work with accounts that 
> are not in the account hierarchy of the developer token?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/7aadabcb-fdf5-48b0-8911-9846462881ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: API can see test accounts but not campaigns

2018-11-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello Rory, 

Thank you for sharing the details. Please note that the account CIDs are 
sensitive information, please refrain from posting them on public forum. 
The ADD_OPERATION_NOT_PERMITTED 

 is 
usually seen when you're attempting to add the campaigns to a manager 
account. Can you make sure that you're using the CID of the client account 
to make the API call? If you're still having an issue adding the campaigns, 
could you share the API SOAP request and response logs so that I can take a 
look? Please check this guide 
 on 
how to enable logging as a reference. You can reply back via Reply 
privately to author option.

Regards,
Bharani, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/40148bda-1465-44b6-ac3b-98d805153f49%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Custom Url Parameters XML Question

2018-11-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, 

I was able to add custom parameters on my testing without any issues using 
the Java client library. Please find the attached SOAP logs as a reference. 
Please note that this 

 field 
cannot be set for campaign channel subtype UNIVERSAL_APP_CAMPAIGN. Can you 
make sure that you're not using the Universal App campaign? If you continue 
to have an issue with this, could you share us the complete SOAP request 
and response logs without redacting any information so I can take a closer 
look? You can reply back via Reply privately to author option.

Thanks,
Bharani, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/2c0c203d-1e65-4029-a1d2-bcdd48c484f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


CampaignService.docx
Description: MS-Word 2007 document


Adwords API - Product Partition: KeyError: None

2018-11-19 Thread Nellle Rickchards
Hello,

I'm following the "Build a product partition tree for an ad group" example 
in Python 
(https://developers.google.com/adwords/api/docs/samples/python/shopping-campaigns#build-a-product-partition-tree-for-an-ad-group)

I ran the code after I updated the adgroup and merchant ids. The new 
product partition appear in the Adwords UI however the script is outputting 
the following error:

Traceback (most recent call last):
  File "shopping_adgroup.py", line 207, in 
main(adwords_client, ADGROUP_ID)
  File "shopping_adgroup.py", line 162, in main
children[adgroup_criterion['criterion']['parentCriterionId']].append(
KeyError: None

Any idea why this is happening? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/96adc6ec-683e-4b50-af26-565913f42f65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: discrepancy between API and UI

2018-11-19 Thread Xiaoyun Yang
ok. cool. Thanks you!

On Monday, November 19, 2018 at 10:47:39 AM UTC-5, Michael Cloonan (AdWords 
API Team) wrote:
>
> Hello,
>
> I'm sorry for the slow response time here. I've reached out again to try 
> to get a status update, and will let you know as soon as I find out 
> anything.
>
> Regards,
> Mike, AdWords API Team
>
> On Monday, November 19, 2018 at 10:18:14 AM UTC-5, Xiaoyun Yang wrote:
>>
>> Hello,
>>
>> Just want to follow up to see what's the status for this issue -
>>
>> Thanks
>>
>> On Wednesday, November 7, 2018 at 2:21:03 PM UTC-5, Xiaoyun Yang wrote:
>>>
>>> That would be greatly appreciated. Thank you!
>>>
>>> On Wednesday, November 7, 2018 at 2:01:11 PM UTC-5, Michael Cloonan 
>>> (AdWords API Team) wrote:

 Hello,

 Thanks for the screenshot! I am going to investigate and get in touch 
 with the team in charge of this column to try to figure out why it's 
 showing in the web interface but not in the API. I will let you know when 
 I 
 have any information to share.

 Regards,
 Mike, AdWords API Team

 On Wednesday, November 7, 2018 at 1:22:33 PM UTC-5, Xiaoyun Yang wrote:
>
> I just sent a screenshot to you. Thanks very much for taking a look!
>
> On Wednesday, November 7, 2018 at 12:40:50 PM UTC-5, Michael Cloonan 
> (AdWords API Team) wrote:
>>
>> Hello,
>>
>> Can you include a screenshot that has more context, including column 
>> names and filters, to help us investigate? You can reply privately to me 
>> rather than post publicly by using the drop-down arrow at the top-right 
>> of 
>> my post.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Wednesday, November 7, 2018 at 6:22:57 AM UTC-5, Xiaoyun Yang 
>> wrote:
>>>
>>>
>>> Trying to get the search lost is (rank) from adgroup performance 
>>> report; But most of my ad groups, even high performance groups get 
>>> undefined search lost is while the UI shows actual numbers.
>>>
>>> The query I am using is:
>>>
>>> SELECT CampaignId, AdGroupId, Device, Date, AveragePosition, 
 Impressions, SearchRankLostImpressionShare 
 FROM ADGROUP_PERFORMANCE_REPORT 
 WHERE CampaignStatus IN [ENABLED] AND AdGroupStatus IN [ENABLED] 
 DURING 20180907, 20181105
>>>
>>>
>>> but it returns:
>>>
>>>Campaign ID  Ad group ID   Device Day  
 Avg. position  Impressions Search Lost IS (rank)
 11211868211030  42984184479  Mobile devices w...  2018-10-18
 2.1   46   -- 
 14951868211030  42984184479  Mobile devices w...  2018-10-27
 2.3   46   -- 
 4036 868211030  42984184479  Mobile devices w...  2018-09-17
 1.6   46   -- 
 11343868211030  42984184479  Mobile devices w...  2018-10-20
 1.9   45   -- 
 16476868211030  42984184479  Mobile devices w...  2018-10-30
 1.6   44   -- 
>>>
>>>
>>> while in the UI:
>>>
>>> [image: Screenshot 2018-11-06 14.27.06.png]
>>>
>>> What could be the problem? Thanks!
>>> -- 
>>> [image: PureCars] 
>>>
>>> Think Beyond the Click
>>>
>>> Win the Customer with PureCars
>>>
>>> www.PureCars.com 
>>>
>>>
>>> Google Premier Partner
>>>
>>> Bing Elite SMB Partner
>>> *Xiaoyun Yang*
>>>
>>> Data Science Analyst
>>>
>>> *Direct*
>>> 404-951-8991
>>>
>>>
>>> *Email*
>>> xiao...@purecars.com
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/5ac08d24-4fc9-4fb4-9048-ccd626dc48f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Using Or with Where statement

2018-11-19 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

My apologies for missing this out in my previous response. It appears that 
you are using an OR operator, this is not supported in the AWQL. You may 
refer to this guide 
 for 
further details.

Regards,
Dannison
AdWords API Team

On Monday, November 19, 2018 at 4:11:18 PM UTC+8, Ns sh wrote:
>
> Hi Dannison,
> I still have the same error after conversion:
> Where("Impressions" Or "Clicks" Or "Conversions" Or "AllConversions").
> GreaterThan(CLng(0))
>
>
>
> On Friday, 16 November 2018 17:05:02 UTC+1, Ns sh wrote:
>>
>> Could you please help me to correct this statement:
>>
>> .Where("Impressions" Or "Clicks" Or "Conversions").GreaterThan(0)
>>
>> I go an error "'Conversion from string "Impressions" to type 'Long' is 
>> not valid'".
>>
>> Thanks.
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/ca24d49f-e49a-4f98-afec-a7a91c3842f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: discrepancy between API and UI

2018-11-19 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello,

I'm sorry for the slow response time here. I've reached out again to try to 
get a status update, and will let you know as soon as I find out anything.

Regards,
Mike, AdWords API Team

On Monday, November 19, 2018 at 10:18:14 AM UTC-5, Xiaoyun Yang wrote:
>
> Hello,
>
> Just want to follow up to see what's the status for this issue -
>
> Thanks
>
> On Wednesday, November 7, 2018 at 2:21:03 PM UTC-5, Xiaoyun Yang wrote:
>>
>> That would be greatly appreciated. Thank you!
>>
>> On Wednesday, November 7, 2018 at 2:01:11 PM UTC-5, Michael Cloonan 
>> (AdWords API Team) wrote:
>>>
>>> Hello,
>>>
>>> Thanks for the screenshot! I am going to investigate and get in touch 
>>> with the team in charge of this column to try to figure out why it's 
>>> showing in the web interface but not in the API. I will let you know when I 
>>> have any information to share.
>>>
>>> Regards,
>>> Mike, AdWords API Team
>>>
>>> On Wednesday, November 7, 2018 at 1:22:33 PM UTC-5, Xiaoyun Yang wrote:

 I just sent a screenshot to you. Thanks very much for taking a look!

 On Wednesday, November 7, 2018 at 12:40:50 PM UTC-5, Michael Cloonan 
 (AdWords API Team) wrote:
>
> Hello,
>
> Can you include a screenshot that has more context, including column 
> names and filters, to help us investigate? You can reply privately to me 
> rather than post publicly by using the drop-down arrow at the top-right 
> of 
> my post.
>
> Regards,
> Mike, AdWords API Team
>
> On Wednesday, November 7, 2018 at 6:22:57 AM UTC-5, Xiaoyun Yang wrote:
>>
>>
>> Trying to get the search lost is (rank) from adgroup performance 
>> report; But most of my ad groups, even high performance groups get 
>> undefined search lost is while the UI shows actual numbers.
>>
>> The query I am using is:
>>
>> SELECT CampaignId, AdGroupId, Device, Date, AveragePosition, 
>>> Impressions, SearchRankLostImpressionShare 
>>> FROM ADGROUP_PERFORMANCE_REPORT 
>>> WHERE CampaignStatus IN [ENABLED] AND AdGroupStatus IN [ENABLED] 
>>> DURING 20180907, 20181105
>>
>>
>> but it returns:
>>
>>Campaign ID  Ad group ID   Device Day  
>>> Avg. position  Impressions Search Lost IS (rank)
>>> 11211868211030  42984184479  Mobile devices w...  2018-10-18
>>> 2.1   46   -- 
>>> 14951868211030  42984184479  Mobile devices w...  2018-10-27
>>> 2.3   46   -- 
>>> 4036 868211030  42984184479  Mobile devices w...  2018-09-17
>>> 1.6   46   -- 
>>> 11343868211030  42984184479  Mobile devices w...  2018-10-20
>>> 1.9   45   -- 
>>> 16476868211030  42984184479  Mobile devices w...  2018-10-30
>>> 1.6   44   -- 
>>
>>
>> while in the UI:
>>
>> [image: Screenshot 2018-11-06 14.27.06.png]
>>
>> What could be the problem? Thanks!
>> -- 
>> [image: PureCars] 
>>
>> Think Beyond the Click
>>
>> Win the Customer with PureCars
>>
>> www.PureCars.com 
>>
>>
>> Google Premier Partner
>>
>> Bing Elite SMB Partner
>> *Xiaoyun Yang*
>>
>> Data Science Analyst
>>
>> *Direct*
>> 404-951-8991
>>
>>
>> *Email*
>> xiao...@purecars.com
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/bf28c883-a227-427f-836c-5e94a03c655e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't enable autotagging

2018-11-19 Thread richard . scorer
Using the API to enable auto tagging, I am informed that I cannot set 
Parallel Tracking.

final CustomerServiceInterface accountCustomerService = 
adWordsServices.get(adWordsSession, CustomerServiceInterface.class);
final Customer[] customers = accountCustomerService.getCustomers();
final Customer customer = customers[0];
if (!customer.getAutoTaggingEnabled()) {
customer.setAutoTaggingEnabled(true);
customer.setParallelTrackingEnabled(false); // or true, or don't set it. 
same error all 3 variations...
try {
final Customer updated = accountCustomerService.mutate(customer);
} catch (RemoteException e) {
log.error("Error changing account " + account.getName());
failed.incrementAndGet();
System.exit(0);
}
}




Request ID: 00057b05e614d8610a1b0a066107798b ResponseTime(ms): 130 
OperationsCount: 1 IsFault: true FaultMessage: 
ApiException{applicationExceptionType=ApiException, 
errors=[OperationAccessDenied{apiErrorType=OperationAccessDenied, 
errorString=OperationAccessDenied.ACTION_NOT_PERMITTED, 
fieldPath=customer.parallelTrackingEnabled, 
fieldPathElements=[FieldPathElement{field=customer}, 
FieldPathElement{field=parallelTrackingEnabled}], 
reason=ACTION_NOT_PERMITTED, trigger=}]}

So to try and work around this error, I tried setting parallelTracking to 
false in one run, and true in another and got the same error.

Any suggestions?


Thanks!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/3997609f-a210-4743-b4ef-045cf5d7431d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: discrepancy between API and UI

2018-11-19 Thread Xiaoyun Yang
Hello,

Just want to follow up to see what's the status for this issue -

Thanks

On Wednesday, November 7, 2018 at 2:21:03 PM UTC-5, Xiaoyun Yang wrote:
>
> That would be greatly appreciated. Thank you!
>
> On Wednesday, November 7, 2018 at 2:01:11 PM UTC-5, Michael Cloonan 
> (AdWords API Team) wrote:
>>
>> Hello,
>>
>> Thanks for the screenshot! I am going to investigate and get in touch 
>> with the team in charge of this column to try to figure out why it's 
>> showing in the web interface but not in the API. I will let you know when I 
>> have any information to share.
>>
>> Regards,
>> Mike, AdWords API Team
>>
>> On Wednesday, November 7, 2018 at 1:22:33 PM UTC-5, Xiaoyun Yang wrote:
>>>
>>> I just sent a screenshot to you. Thanks very much for taking a look!
>>>
>>> On Wednesday, November 7, 2018 at 12:40:50 PM UTC-5, Michael Cloonan 
>>> (AdWords API Team) wrote:

 Hello,

 Can you include a screenshot that has more context, including column 
 names and filters, to help us investigate? You can reply privately to me 
 rather than post publicly by using the drop-down arrow at the top-right of 
 my post.

 Regards,
 Mike, AdWords API Team

 On Wednesday, November 7, 2018 at 6:22:57 AM UTC-5, Xiaoyun Yang wrote:
>
>
> Trying to get the search lost is (rank) from adgroup performance 
> report; But most of my ad groups, even high performance groups get 
> undefined search lost is while the UI shows actual numbers.
>
> The query I am using is:
>
> SELECT CampaignId, AdGroupId, Device, Date, AveragePosition, 
>> Impressions, SearchRankLostImpressionShare 
>> FROM ADGROUP_PERFORMANCE_REPORT 
>> WHERE CampaignStatus IN [ENABLED] AND AdGroupStatus IN [ENABLED] 
>> DURING 20180907, 20181105
>
>
> but it returns:
>
>Campaign ID  Ad group ID   Device Day  Avg. 
>> position  Impressions Search Lost IS (rank)
>> 11211868211030  42984184479  Mobile devices w...  2018-10-18  
>>   2.1   46   -- 
>> 14951868211030  42984184479  Mobile devices w...  2018-10-27  
>>   2.3   46   -- 
>> 4036 868211030  42984184479  Mobile devices w...  2018-09-17  
>>   1.6   46   -- 
>> 11343868211030  42984184479  Mobile devices w...  2018-10-20  
>>   1.9   45   -- 
>> 16476868211030  42984184479  Mobile devices w...  2018-10-30  
>>   1.6   44   -- 
>
>
> while in the UI:
>
> [image: Screenshot 2018-11-06 14.27.06.png]
>
> What could be the problem? Thanks!
> -- 
> [image: PureCars] 
>
> Think Beyond the Click
>
> Win the Customer with PureCars
>
> www.PureCars.com 
>
>
> Google Premier Partner
>
> Bing Elite SMB Partner
> *Xiaoyun Yang*
>
> Data Science Analyst
>
> *Direct*
> 404-951-8991
>
>
> *Email*
> xiao...@purecars.com
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/bf86cea4-595a-4726-a262-289cb284fbee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Chartramp - Open source project for Google Ads API

2018-11-19 Thread Majid Khosravi
I had to logout from my gmail account to be able to download it, thank you.

On Friday, 16 November 2018 19:00:00 UTC, Dannison Yao (AdWords API Team) 
wrote:
>
> Hi Majid,
>
> Could you access this link 
>  and 
> click on the "Open Table" button and see if you have access to it?
>
> Regards,
> Dannison
> AdWords API Team
>
> On Friday, November 16, 2018 at 7:30:24 PM UTC+8, Majid Khosravi wrote:
>>
>> Sure. here it is.
>>
>> On Thursday, 15 November 2018 17:17:37 UTC, Dannison Yao (AdWords API 
>> Team) wrote:
>>>
>>> Hi Majid,
>>>
>>> The link I sent should be publicly available. Could you send over a 
>>> screenshot of what you're seeing upon accessing it?
>>>
>>> Regards,
>>> Dannison
>>> AdWords API Team
>>>
>>> On Thursday, November 15, 2018 at 8:07:36 AM UTC+8, Majid Khosravi wrote:

 Thanks but it seems that fusion table is private and I don't have 
 access to it.

 On Thursday, 15 November 2018 00:01:39 UTC, Dannison Yao (AdWords API 
 Team) wrote:
>
> Hi Majid,
>
> What you can do here is upon retrieving the Id of the Location from 
> CAMPAIGN_LOCATION_TARGET_REPORT, you can map the location ID to the 
> country code using this guide 
> 
> .
>
> Regards,
> Dannison
> AdWords API Team
>
> On Thursday, November 15, 2018 at 4:48:42 AM UTC+8, Majid Khosravi 
> wrote:
>>
>> Thanks Dannison,
>>
>> So what would be the best way to get the country codes? In the above 
>> example I am using CAMPAIGN_LOCATION_TARGET_REPORT service to pull the 
>> result per location and I want to get the country code of each location 
>> id 
>> as well.
>>
>> Thanks.
>>
>> On Wednesday, 14 November 2018 20:10:40 UTC, Dannison Yao (AdWords 
>> API Team) wrote:
>>>
>>> Hi Majid,
>>>
>>> It is expected that the value for countryCode will be blank when you 
>>> retrieve it as this field is generally used for filters. According 
>>> to the documentation 
>>> ,
>>>  
>>> it is used as a hint or suggestion when you are doing your filtering. 
>>> For 
>>> example, you specified *CountryCode** EQUALS 'US' *when calling the 
>>> API. This means that the results returned by the API is filtered by the 
>>> countryCode, specifically if it is equal to 'US'.
>>>
>>> Hope this helps.
>>>
>>> Regards,
>>> Dannison
>>> AdWords API Team
>>>
>>> On Thursday, November 15, 2018 at 2:05:42 AM UTC+8, Majid Khosravi 
>>> wrote:

 I have recently started an open source project called Chartramp 
 which pulls data from different ad networks including Google Adwords 
 API 
 for analysis purposes, In case might be useful:

 https://github.com/Chartramp/Chartramp

 Currently I have an issue regarding fetching the country code 
 from LocationCriterionService to map daily GEO records per country.

 Here is the code:


 https://github.com/Chartramp/Chartramp/blob/master/application/src/Service/Network/Google/GoogleAds.php
  
 using getCountryCodes function.

 Can you guys have a look and let me know if there is a way to get 
 the countryCode from LocationCriterionService? It always returns as 
 null.

 Thanks!

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/c2503627-8985-4af7-a4b5-551ac35e6e1d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [About max length of Final URL suffix at account level and campaign level] What's max length of Final URL suffix at account level and campaign level

2018-11-19 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello,

The limits in the API should match the limits in the web interface. There 
is no published maximum limit for this field, but keep in mind that a URL 
has a maximum limit of around 2000 characters 

 before 
it will no longer function properly in some browsers. So even though 
there's no enforced limit on this field, there's still a practical limit to 
how many characters you can use.

Regards,
Mike, AdWords API Team

On Monday, November 19, 2018 at 2:22:40 AM UTC-5, take wrote:
>
>
> Dear Awords API team,
>
> I'm implementing Adwords API RMF C.328, C.329, M.328 ( 
> https://developers.google.com/adwords/api/docs/requirements ). While 
> implement, I have 2 question as below:
>
> 1. What's max length of "finalURLSuffix 
> "
>  
> at account level ?
> 2. What's max length of "finalURLSuffix 
> "
>  
> at campaign level ?
>
> * Note: On Adwords screen (https://adwords.google.com), I can input 
> unlimit character at account level and campaign level.
>
> Thank you Adwords API team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/a2f89023-822b-4e6a-bec3-66192b96d3ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to Select Multiple Product Item by ProductOfferId Class

2018-11-19 Thread faizan . zulfiqar
Hello

I need to make a product of selected product. I have searched and found out 
that we can achieve it via ProductOfferId Partition Type Class but my 
question is how can we assign multiple items ?
Waiting for your answer


Thank you

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/6e18ddba-a634-41e0-9916-3200fdd546d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Dynamics Remarketing ads with different feeds

2018-11-19 Thread Станислав Key
Hi!

At this moment I have one website with different feeds (because there are 
products with different costs in different towns). How can I make dynamics 
remarketing for this site?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/0a14395c-c011-40d1-b5a9-4dab17bff40e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Custom Url Parameters XML Question

2018-11-19 Thread jack . e . perry6
Hello,

This is my request:
'' +
  'http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>' +
  '  ' +
  'https://adwords.google.com/api/adwords/cm/v201809; 
soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next; 
soapenv:mustUnderstand="0">' +
  '  ' + this.customerClientId + 
'' +
  '  ' + this.developerToken + 
'' +
  '  AdWords API Practice' +
  '  ' + validate + '' +
  '  ' + partialFailure + 
'' +
  '' +
  '  ' +
  '  ' +
  'https://adwords.google.com/api/adwords/cm/' + 
this.constraints.apiVersion + '">' +
  '  ' +
  'SET' +
  '  ' +
  '1621838844' +
  '' +
  '  ' +
  'iAmKey' +
  'iAmValue' +
  'false' +
  '  ' +
  '  true' +
  '' +  
  '  ' +
  '  ' +
  '' +
  '  ' +
  '';

This is my response:
http://schemas.xmlsoap.org/soap/envelope/;>
https://adwords.google.com/api/adwords/cm/v201809;>
00057ae2dff9cd280a0108168e060393
CampaignServicemutate0121https://adwords.google.com/api/adwords/cm/v201809;>


I am receiving no errors, but no urlCustomParameters are added to my 
campaign. I am guessing I am doing something simple wrong, what might it be?

Thank you for your time.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/67b525f3-4026-41e0-9d76-fe2be69f6498%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


API can see test accounts but not campaigns

2018-11-19 Thread RPowers
Hi,

I am creating my first Adwords API project (in C#) and have the 
AdWords.Examples project running. (v201809)

I've created test accounts (a manager account and another with campaigns) 
and setup my OAuth2 access.

When I start the project, I can call GetAccountHierarchy and get this data 
back

2157664515, SFCR Test Manager
--8803849060, SFCR Test Account

The last account is the one with the campaign. This is what I am providing 
as my ClientCustomerId

If I call GetCampaigns however I always see this

This code example lists all campaigns. To add a campaign, run 
AddCampaign.cs.
Number of campaigns found: 0

I thought maybe it's looking for campaigns in the wrong account so I also 
tried AddCampaign to see where it would create it but I then get this 
error

OperationAccessDeniedReason.ADD_OPERATION_NOT_PERMITTED. (Error: 
OperationAccessDenied.ADD_OPERATION_NOT_PERMITTED, FieldPath: 
operations[0], Trigger: )

Any help would be hugely appreciated.

Thanks
Rory

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/9459a6dc-ccc9-4349-a353-7116246b5595%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


refreshtoken user not in mi hierachy account

2018-11-19 Thread juan
Hello, I am trying to consume the adswords API with a refresh token 
generated after the user grants me the permissions, following this guide
https://github.com/googleads/googleads-php-lib/wiki/API-access-on-behalf-of-your-clients-(web-flow)

unfortunately I do not get the results I want,
my question is: does that generated refreshtoken work with accounts that 
are not in the account hierarchy of the developer token?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/27e04ef9-792d-4b3d-949a-274051f0ad4c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I accidentidentally uploaded the same offline conversion file twice (using the Adwords API) - how do I cancel the second one?

2018-11-19 Thread Emma Combes
They both claimed to be uploaded successfully - I don't want duplicates of 
all the conversions!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/05fb74a0-c737-4d8b-8809-d62bf271bc0b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Reports from AdWords API return empty , while on the platform there is data

2018-11-19 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Matan,

In order to better assist you, could you provide the clientCustomerId and 
the complete report definition 

 you 
used to generate the report? You may reply to me via the *Reply privately 
to author* option.

Thanks and regards,
Peter
AdWords API Team

On Monday, November 19, 2018 at 5:09:55 PM UTC+8, 
matan.meshu...@innovid.com wrote:
>
> I'm trying to download "URL performance report" of another account I have 
> access to, through AdWords API and the results are always empty.
>
> - The report returned with data 2 weeks ago on the same dates
>
> - I'm able to download this report manually through AdWords (under "where 
> ads showed") - not a data issue 
>
> - I'm able to download through the API other reports with data
>
> Anybody can advise? Did something changed on "account access"? at the API 
> ? the report was deprecated? 
>
>
> Thank you
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/98f7f483-7ad8-4df5-8603-e0dd8583ac09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Newbie- basic questions

2018-11-19 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Ralphie,

The supported ad types by the AdWords API can be found here 
.
 
As for template ads such as HTML5 ads, you can refer to this guide 
 
on 
how to create them and also here 
 for 
their specifications. You can then refer to this link 

 for 
the sample code which is also available in other languages.

Let me know if that is what you're looking for.

Best regards,
Peter
AdWords API Team

On Monday, November 19, 2018 at 5:09:55 PM UTC+8, Ralphie Dee wrote:
>
> I have done countless banner ads in html 5 and flash. I now have someone 
> that wants me to do adds for their Google Account. Not being famiiar with 
> how to create these I need to know how and where I can get the template ( 
> if any) for the following type ads. CLient sent this link to me 
>
>
> https://adwords.google.com/aw_displayads/creatives/ExternalPreview?hl=en_US=105671935820=29032292420=52596380=false=true=true=7=null=ACiVB_xCEvc8a9cCQBFXWX6v2pzUuowXSg
>
> Can someone help me here on how to do this please?
>
> Thanks
> RDee
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/124e2f1f-af43-4b37-b777-8f1b27073272%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Newbie- basic questions

2018-11-19 Thread Ralphie Dee
I have done countless banner ads in html 5 and flash. I now have someone 
that wants me to do adds for their Google Account. Not being famiiar with 
how to create these I need to know how and where I can get the template ( 
if any) for the following type ads. CLient sent this link to me 

https://adwords.google.com/aw_displayads/creatives/ExternalPreview?hl=en_US=105671935820=29032292420=52596380=false=true=true=7=null=ACiVB_xCEvc8a9cCQBFXWX6v2pzUuowXSg

Can someone help me here on how to do this please?

Thanks
RDee

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/2c255047-2a96-46ca-b969-78d3d96595d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


newbie How to create these type of ads please

2018-11-19 Thread Ralphie Dee
https://adwords.google.com/aw_displayads/creatives/ExternalPreview?hl=en_US=105671935820=29032292420=52596380=false=true=true=7=null=ACiVB_xCEvc8a9cCQBFXWX6v2pzUuowXSg

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/5d278fa4-986e-4e44-99ff-80c91054890d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Reports from AdWords API return empty , while on the platform there is data

2018-11-19 Thread matan . meshulam


I'm trying to download "URL performance report" of a another account I have 
access to, through AdWords API and the results are always empty. Some more 
info:

- I did see results a few weeks ago, and now i don't.

- I can download this report manually through AdWords (under "where ads 
showed") - so its not a data issue. 

- I can pull other reports from API on the same account 


Anybody can advise? Something has changed on the API? on the permissions in 
"account access"?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/ed3b5e03-f314-4778-80bb-3c359d7c6658%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Reports from AdWords API return empty , while on the platform there is data

2018-11-19 Thread matan . meshulam


I'm trying to download "URL performance report" of another account I have 
access to, through AdWords API and the results are always empty.

- The report returned with data 2 weeks ago on the same dates

- I'm able to download this report manually through AdWords (under "where 
ads showed") - not a data issue 

- I'm able to download through the API other reports with data

Anybody can advise? Did something changed on "account access"? at the API ? 
the report was deprecated? 


Thank you

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/a9946c94-29b4-49f7-aae4-8a0fb89c0023%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Using Or with Where statement

2018-11-19 Thread Ns sh
Hi Dannison,
I still have the same error after conversion:
Where("Impressions" Or "Clicks" Or "Conversions" Or "AllConversions").
GreaterThan(CLng(0))



On Friday, 16 November 2018 17:05:02 UTC+1, Ns sh wrote:
>
> Could you please help me to correct this statement:
>
> .Where("Impressions" Or "Clicks" Or "Conversions").GreaterThan(0)
>
> I go an error "'Conversion from string "Impressions" to type 'Long' is not 
> valid'".
>
> Thanks.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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/85bd367c-f8db-4477-9c6d-58c43190be15%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.