Re: AdGroupAdService is not giving the statistics of ads

2018-02-26 Thread webmaster12220


On Tuesday, February 27, 2018 at 1:37:32 AM UTC+7, Dhanya Sundararaju 
(AdWords API Team) wrote:
>
> Hi,
>
> The error "Invalid field name : "AveragePosition, Clicks, Impressions" is 
> being thrown because these fields are metrics in the 
> ADGROUP_PERFORMANCE_REPORT 
> .
>  
> You will be able to get fields only which are attributes of the AdGroup if 
> you are calling the AdGroupCriterionService. Instead, if you create a 
> reportdefinition 
> ,
>  
> you will be able to get these fields in your report. Please refer the 
> guide 
>  for 
> a sample code. If you have further questions, could you please create a new 
> thread as this would help us to keep track of issues?
>
> Regards,
> Dhanya, AdWords API Team
>

Thanks for your reply
So I have one question, When I use Report, I can  set pagination function?
For example,$selector->setPaging(new Paging(0,10)); code line.
But I got error also like this "Paging is not supported "
Hope this will solved soon.

Thanks

Regards

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

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


Re: How can I send mobile advertisement IDs via API to google campaign?

2018-02-26 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Ankur,

You may use the AdwordsUserListService 

 to 
upload the mobile advertisement IDs. To be able to upload the data (you 
should be whitelisted), you will need to put the ids in the mobileId 

 field 
of the Member 

 object. 
You may check this sample code 

 in 
Ruby for reference. Though the sample code uses email address, you may use 
this as reference to upload the mobileIds. Let me know if you have further 
clarifications.

Thanks and regards,
Luis
AdWords API Team

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

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


Re: Youtube image ad not "showing ads right now"

2018-02-26 Thread 'Peter Oliquino' via AdWords API Forum
Hi Trevor,

The issue you are encountering appears to be more related to the AdWords UI 
and your ads' status. This being said, you may reach out to the product 
experts in the AdWords Community Forum 
 
for 
further assistance.

Thanks and regards,
Peter
AdWords API Team

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

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


Re: Account Performance Report - Measures Vastly Overstated

2018-02-26 Thread 'Peter Oliquino' via AdWords API Forum
Hi,

It seems that everything is working perfectly on your code. The issue with 
the large value of costs that you are encountering is due to the Cost 

 and 
other "money" fields are represented in micros 
.
 
This means that the actual value will still need to be calculated or 
converted by dividing 1,000,000 from the cost value you got from the 
report. However, as for the impressions, you can consider them as is.

Let me know if this helps or if you have any further clarifications.

Thanks and regards,
Peter
AdWords API Team

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

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


Re: 201708 issues

2018-02-26 Thread 'Peter Oliquino' via AdWords API Forum
Hi Shawn,

There should be no issues with the 201708 version that you are using, 
however, we always recommend the usage of the latest version 

 in 
order to utilize the improvements and new features of newer versions. As 
for the current issue you are encountering, could you provide more details 
such as any SOAP request and response (for issues when using AdWords API 
services) or the complete report definition 

 (for 
reporting issues) that would allow me to better identify the cause? You may 
reply using the *Reply privately to author* option.

Best regards,
Peter
AdWords API Team

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

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


Re: What is the process to get whitelisted to use the AdwordsUserListService mutateMembers operation?

2018-02-26 Thread 'Peter Oliquino' via AdWords API Forum
Hi Alex,

The mutateMembers() 

 method 
does not really require any whitelisting, however, utilizing some of the 
fields in the Member 

 object 
will indeed need you to be whitelisted. This being said, could you confirm 
if you are indeed using any of the listed fields that require whitelisting 
in the linked documentation? Could you also provide your clientCustomerId 
privately via the *Reply privately to author* option?

Best regards,
Peter
AdWords API Team

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

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


Re: Get report product goup all field using google adwords api

2018-02-26 Thread 'Peter Oliquino' via AdWords API Forum
Hi David,

This may be possible to achieve, however, we do not entirely recommend it 
as it may yield inaccurate results. Right now, there is currently no fields 
or workarounds via the AdWords API reporting where you may get accurate 
results for the metrics you require.

Best regards,
Peter
AdWords API Team

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

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


Re: Get report product goup all field using google adwords api

2018-02-26 Thread David Antunes
Hi,

I'd also need to have this available - one question:
It seems to me that it is possible to compute this information taking the 
products from the google merchant account (with its API) and comparing them 
to the product partitions in the AdWords account.
Is this the case? Or am I missing something?

Many thanks!
David

On Thursday, December 21, 2017 at 9:25:27 AM UTC, Peter Oliquino wrote:
>
> Hi,
>
> Using the AdWords API, you may generate the Product Partition Report 
> 
>  for 
> shopping campaign information aggregated at the product partition/group 
> level. You may also refer to the Shopping Performance Report 
> 
>  for 
> statistics aggregated at the product level. As for the fields that you 
> mentioned, I'm afraid that they are currently not supported in the said 
> reports.
>
> Best regards,
> Peter
> AdWords API Team
>

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

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


Youtube image ad not "showing ads right now"

2018-02-26 Thread Trevor Sanders
I've recently created an image ad via the AdWords API, and have entered 
"YouTube.com" as a managed placement. Using the old user interface, when I 
hover over the Status dialog next to my placement, I see "Showing ads right 
now?" with a red "NO" arrow. I currently have no keywords associated with 
the ad, and there is sufficient daily budget. All levels of the campaign 
are 'eligible' and 'enabled.' Can anyone help figure out why my ad won't 
show?

Thanks!

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

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


Re: Video Performance Report

2018-02-26 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Timna, 

Thanks for the feedback. I will pass on the request to the team and see if 
the ConversionTypeName 

 and ConversionCategoryName 

 can 
be made compatible with Conversions 

 in Video Performance Report 
.
 
Please keep an eye on our blog 
 for 
updates and announcements about future releases. 

Thanks,
Sreelakshmi, AdWords API Team

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

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


Re: Unable to download reports despite waiting for 2 days

2018-02-26 Thread 'Milind Sankeshware (AdWords API Team)' via AdWords API Forum
Hi Chirag,

Please note that, the daily operational limit is based on the access level 
of your developer token and not at the user level. That said, there may be 
other users who are using the same developer token, which is exhausting the 
daily quota of report downloads (1000/day) with Basic access. You might 
want to confirm with the Admin user of the MCC account who owns the 
developer token to see if there are other report downloads which uses the 
same developer token. Let me know if you have any further questions.

Thanks,
Milind, AdWords API Team.

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

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


Re: Adwords v201802

2018-02-26 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Shawn, 

We are currently not aware of any known issues using the v201708. If you're 
having any difficulty using this version or migrating from this version, 
please elaborate so I can take a look. 

Regards,
Bharani, AdWords API Team

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

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


201708 issues

2018-02-26 Thread Shawn Unger
Starting last week we started having issues getting clients data 
using 201708 version. This version doesn't go away until end of March but 
since we are getting close could there be issues using this version 
currently. 201702 was just sunset, not sure if that is impact 08 or not.  

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

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


Re: Adwords v201802

2018-02-26 Thread Shawn Unger
Are you currently having any issues with 201708.  we are currently and 
trying to see if its version issue or not since getting close to end of 
version. 

On Monday, February 26, 2018 at 9:45:35 AM UTC-5, lcol...@perk.com wrote:
>
> It's almost the end of February and I don't see any specific 
> details/release notes for the 201802 release. I'm trying to wait for this 
> release to come out before upgrading from 201708 version (since the 
> deprecation schedule is now much more aggressive). 
>
> Any ideas on a release date for 201802? 
> Alternately, if the 201802 release is being pushed back, will the 
> deprecation schedule also be delayed? 
>
> TIA
>
> On Wednesday, January 24, 2018 at 11:01:00 AM UTC-5, Bharani Cherukuri 
> (AdWords API Team) wrote:
>>
>> Hello, 
>>
>> We will not be able to provide an exact timeline of when v201802 will be 
>> released. It is scheduled to be released in Feb, 2018. Please refer to 
>> this 
>> 
>>  API 
>> sunset and release schedule for more information. You can also keep an eye 
>> out on our blog 
>>  for 
>> more updates about upcoming releases or announcements. You can also join 
>> the API announcements forum 
>>  to keep you 
>> posted on any future updates. 
>>
>> Regards,
>> Bharani, AdWords API Team
>>
>

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

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


Account Performance Report - Measures Vastly Overstated

2018-02-26 Thread k2atotc
Hi,

I'm running an 'Account Performance Report' API request using AWQL via 
Python 3.6. 

   - We have basic access against a production MMC account.  Seems to work 
   fine.
   - I'm pulling for several child clients and appending the results into a 
   single file.  Seems to work fine.
   - I'm pulling for duration 'YESTERDAY' - which also seems to work fine.  
   The day field is coming correctly and the report header also shows the 
   expected values.
   - Everything seems to execute correctly - I get a populated TSV file for 
   all the child clients but the impressions/cost are vastly overstated.
   - This same thing is happening for my KEYWORDS_PERFORMANCE_REPORT.
   - I've attached a CSV of what I get when pulling the same request from 
   the portal - which is more in line with reality.  This is production data.
   
 Here is my report builder statement:

  # Initialize appropriate service.
  try:
report_downloader = client.GetReportDownloader(version='v201710')


# Create report query.
report_query = (adwords.ReportQueryBuilder()
  .Select(  'AccountDescriptiveName'
  , 'Date'
  , 'Impressions'
  , 'Clicks'
  , 'Cost')
  .From('ACCOUNT_PERFORMANCE_REPORT')
  .Where('Clicks').GreaterThan(0)
  .During('YESTERDAY')
  .Build())
  except Exception as e:
print (e)
logger.exception(e)
sys.exit(1)

Here's what my down loader looks like:

# Download the report data
report_downloader.DownloadReportWithAwql(
report_query, 'TSV', file, skip_report_header=False,
skip_column_header=True, skip_report_summary=True,
include_zero_impressions=False)


Here is what's returning in my report TSV file.  I replaced our company 
name with XXX at the beginning of each header line.

   - Each child account is represented as it should be.
   - The dates in the report header line and day field are correct.
   - The impressions, clicks, and cost are incredibly high (bold and 
   underlined the first example).  We've never spent that much in our entire 
   time with Google.
   - I noticed in the Keywords Performance versions (also pulled for 
   yesterday) that the cost measures are very odd - 3, 10 - very even 
   and large.

"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX PLA 2018-02-25 *5871848 60698 2566283*
"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX Brand 2018-02-25 44766 23918 138287
"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX Product 2018-02-25 514570 5985 335899
"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX - Product - Mobile 2018-02-25 611296 7905 235450
"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX Seasonal Occasion 2018-02-25 52871 706 63097
"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX - Seasonal Occasion - Mobile 2018-02-25 110549 959 27563
"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX Evergreen 2018-02-25 81661 2488 218664
"ACCOUNT_PERFORMANCE_REPORT (Feb 25, 2018)"
XXX - Evergreen - Mobile 2018-02-25 9 2054 102168

Please let me know if there's something I'm doing wrong and how I should 
adjust my code.

Thank you in advance.



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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d3467636-fa0d-4c63-a18b-0bc03f2f5eb5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Name	account balance report
Type	Account
Frequency	One time
Date range	Yesterday
Dates	25-Feb-18
Account	Day	Clicks	Impressions	Cost	Avg. position
xxx PLA	2/25/2018	60699	5871846	"25,663.10"	0
xxx Seasonal Occasion	2/25/2018	706	52871	630.97	2.3
xxx Evergreen	2/25/2018	2488	81661	"2,186.64"	2.4
xxx Product	2/25/2018	5985	514570	"3,358.99"	2.9
xxx Brand	2/25/2018	23918	44766	"1,382.87"	1.1
xxx - Seasonal Occasion - Mobile	2/25/2018	959	110549	275.63	2.8
xxx - Product - Mobile	2/25/2018	7905	611296	"2,354.50"	2.9
xxx - Evergreen - Mobile	2/25/2018	2054	9	"1,021.68"	2.6


What is the process to get whitelisted to use the AdwordsUserListService mutateMembers operation?

2018-02-26 Thread Alex Leventer
What is the process to get whitelisted to use the AdwordsUserListService 
mutateMembers operation?

I get the following error when I attempt to add a member to a list: 
NotWhitelistedError.CUSTOMER_NOT_WHITELISTED_FOR_API

Thanks,
Alex

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

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


How can I send mobile advertisement IDs via API to google campaign?

2018-02-26 Thread Ankur Vyas
I want to send a list of mobile advertisement IDs via AdWords API to my 
Google AdWords campaigns. How can I do that?

I am talking 
about 
https://support.google.com/adwords/answer/6276125?co=ADWORDS.IsAWNCustomer%3Dfalse=en-GBv
 
via Google Adwords API.

I am Ruby On Rails Developer and using this gem 
- https://github.com/googleads/google-api-ads-ruby 

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

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


Re: Discrepancies ad performance report/ criteria performance report

2018-02-26 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Andreas, 

The Ad Performance Report 

 includes 
statistics aggregated at the ad level, one row per ad. If you're pulling 
the cost, clicks information using this report type, it will return the 
amount spend for each ad. On the other hand, Criteria Performance Report 

 includes 
statistics aggregated at the ad group criteria level, one row per ad group 
and criteria combination.

Please find my response below for the scenarios mentioned:

A) Campaign types that have ads but no criteria (as in the criteria 
performance report):

 For the Mobile App Campaigns, you will be able to use the supported report 
types mentioned here 
.
 
Criteria Performance Report and Ad Performance Report are not supported for 
these campaigns and hence will not return any metrics. 

B) Campaign types that have criteria but no ads:

For the Shopping Campaigns, you could use Ad Performance Report by 
specifying the AdType 

 as 
SHOWCASE_AD for Shopping campaigns. You could also use one of the report 
types mentioned here 
. 
Additionally, Shopping campaigns do have ads called Shopping ads. Please 
refer to this guide 

 for 
more information. 

C) Campaign types that cannot be seen in the ad performance report and in 
the criteria performance report:

Currently, the Video campaigns and Mobile App Campaigns are not supported 
for these Report types.

Regards,
Bharani, AdWords API Team

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

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


Re: Structure Report for CustomerNegativeCriterion

2018-02-26 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hi Dorian, 

There are several report types that you could use to retrieve the campaign 
level negative criteria. You may use Campaign Negative Placements 
Performance Report 

, Campaign Negative Keywords Performance Report 

 and Campaign Negative Locations Report 

 to 
retrieve the excluded placement, keywords and locations information. 

To retrieve the account level negative criteria, it is currently not 
possible using API reports. You will need to use the 
CustomerNegativeCriterionService 

 or 
use Shared sets 

 to 
manage this criteria.

Let me know if you have any other questions. 

Regards,
Bharani, AdWords API Team

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

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


Re: How to download AdWords CAMPAIGN_PERFORMANCE_REPORT on monthly basis

2018-02-26 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

The Campaign Performance Report 

 will 
return stats at the Campaign level with one row per campaign. Using this 
report type, you will be able to segment based on MonthOfYear 
,
 
at the campaign level. 

If you're looking to get the total cost per month, you could use the Account 
Performance Report 

 segmenting 
based on MonthOfYear 
.
 
This report type will return stats at account level, one row per account 
and their cost for a specific month. Let me know if you have any other 
questions. 

Regards,
Bharani, AdWords API Team

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

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


Re: Pulling performance by "Ad" level instead of "Ad Group" Level

2018-02-26 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Sam, 

Welcome to AdWords!

The guide that you are referring to describes how to work with any reports 
in general. Different types of reports available via the API can be found 
here . To 
get the stats aggregated at the Ad level, you can use the Ad Performance 
Report 
.
 
You will need to select the fields that you are interested in from the 
available ones. These 

 are 
code samples in reporting (Java) that you can refer to. Samples in other 
languages can also be found here 
. Please 
let me know if you have any further questions. 

Thanks,
Sreelakshmi, AdWords API Team

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

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


Re: View-through conversions mismatch between API and UI

2018-02-26 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi Tiana,

Via the API, View-through conversions 

 are 
used for display or video ad campaigns only in sync with the web interface 
as per this  guide under 
section 'About view-through conversions'. Could you send across a 
screenshot of the view-through conversion for a search campaign that you 
see on the UI or send across the client customer id and Campaign id, so 
that I will be able to check further? Please *reply privately to author*.

Regards,
Dhanya, AdWords API Team

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

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


Re: Who to reach out for adwords API troubleshooting request by client?

2018-02-26 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi,

Is your question regarding AdWords API or Scripts? If your question is 
regarding AdWords API, please elaborate. Else, if your question is 
regarding scripts, please post in the AdWords Scripts Forum 

 and 
they should get back to you soon.

Regards,
Dhanya, AdWords API Team

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

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


Re: AdGroupAdService is not giving the statistics of ads

2018-02-26 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi,

The error "Invalid field name : "AveragePosition, Clicks, Impressions" is 
being thrown because these fields are metrics in the 
ADGROUP_PERFORMANCE_REPORT 
.
 
You will be able to get fields only which are attributes of the AdGroup if 
you are calling the AdGroupCriterionService. Instead, if you create a 
reportdefinition 
,
 
you will be able to get these fields in your report. Please refer the guide 
 for 
a sample code. If you have further questions, could you please create a new 
thread as this would help us to keep track of issues?

Regards,
Dhanya, AdWords API Team

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

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


Re: Location of adsapi_php.ini

2018-02-26 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi Marty,

You would need to copy down the adsapi_php.ini to your home directory 
.
 
To find your home directory, please run this sample code 

 and 
let me know if you have further questions.

Regards,
Dhanya, AdWords API Team

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

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


Re: Can't set DYNAMIC_IMAGE MediaType when uploading animated GIF image via MediaService

2018-02-26 Thread Layne Shepherd
I'm uploading new images, inlining image data, and it still gets rejected 
when using DYNAMIC_IMAGE.  The only way I can upload is to use IMAGE for 
MediaType.  These were animated gifs, so I'm wondering what DYNAMIC_IMAGE 
is even used for (has it ever worked?) if I can't upload an animated gif to 
MediaService -- it certainly doesn't work as advertised in the API 
documentation.

DYNAMIC_IMAGE Animated image, such as animated GIF.
IMAGE Static image; for image ad.
On Sunday, February 25, 2018 at 6:05:27 AM UTC-8, Josh Radcliff (AdWords 
API Team) wrote:
>
> Hi,
>
> My other post 
>  
> from 
> around the same time sheds some light on this and suggests inlining the 
> image data instead of passing a *mediaId*. Have you tried that approach?
>
> Thanks,
> Josh, AdWords API Team
>
> On Thursday, February 22, 2018 at 6:47:24 PM UTC-5, Layne Shepherd wrote:
>>
>> I'm getting the same error, 3+ years later.  Would be nice if you guys 
>> posted the solution here instead of just let me take a look at your account 
>> with no information posted thereafter...
>>
>> On Wednesday, June 11, 2014 at 11:09:47 AM UTC-7, Josh Radcliff (AdWords 
>> API Team) wrote:
>>>
>>> Hi,
>>>
>>> Please see my reply to your other post 
>>> . 
>>> Let's continue the discussion on that post if you have further questions.
>>>
>>> Cheers,
>>> Josh, AdWords API Team
>>>
>>> On Tuesday, June 10, 2014 9:35:36 AM UTC-4, Josh Radcliff (AdWords API 
>>> Team) wrote:

 Hi,

 Thanks for clarifying. At this point I think it would be best if I 
 could look at your particular account. Could you send the following *only 
 to me *by clicking *Reply to Author*?

 1. Your customer ID
 2. The mediaIds of the images you've uploaded
 3. The image file you uploaded
 4. Any request/response logs that may be helpful

 Also, how do you ultimately want to use the image? In a template ad or 
 in an image ad?

 Thanks,
 Josh, AdWords API Team

 On Tuesday, June 10, 2014 9:29:50 AM UTC-4, Chingiz Aitkul wrote:
>
> Hi, yes I can create the ad using UI with the very same animated gif 
> Image.
>
> Actually I can upload the Image via MediaService, and get a generated 
> mediaId. The problem is that the Image media is not retrievable after 
> that. 
> On the other hand, when I upload a static GIF or JPEG Image, it is always 
> retrievable via MediaService after that. The Java example code from 
> google sets the media type as MediaMediaType.IMAGE, before uploading via 
> MediaService, so I tried to set MediaMediaType.DYNAMIC_IMAGE instead, 
> which 
> generated an error I posted above.
>
> The question is, why does MediaService reply with ok when I upload an 
> animated GIF Image by specifying media type IMAGE, but then somehow 
> "forget" it? If it is media type DYNAMIC_IMAGE, i should use when 
> uploading 
> animated GIFs, why do I get error from MediaService?
>
>
> On Monday, June 9, 2014 8:26:32 PM UTC+2, Josh Radcliff (AdWords API 
> Team) wrote:
>
>> Hi,
>>
>> The UI supports a wide variety of ads, but the API may not 
>> necessarily support every one of these formats. As a starting point, 
>> have 
>> you tried creating the ad through the UI using the image in question? If 
>> the UI won't create the ad, then the API will not either.
>>
>> Also, the MediaService is meant for usage with template ads 
>> , 
>> which does *not* include ImageAd 
>> s.
>>  
>> If you want to create an *ImageAd* you'll have to skip *MediaService* 
>> altogether and pass the image data directly on the ImageAd.image.data 
>> 
>>  field in 
>> your *AdGroupAdService* request.
>>
>> Cheers,
>> Josh, AdWords API Team
>>
>> On Friday, June 6, 2014 12:08:42 PM UTC-4, Chingiz Aitkul wrote:
>>>
>>> Hi there, I am trying to upload an animated GIF Image via upload() 
>>> method of MediaService using example code provided with Java library 
>>> for 
>>> AdWords API. When I upload a static GIF or JPEG file it works ok.
>>>
>>> When I try to upload an animated GIF Image, the Service replies with 
>>> a MediaID without any errors, but when I query for all available media 
>>> files, I don't recieve any entries for the animated GIF Images, only 
>>> the 
>>> static Image Uploads I retrieved.
>>>
>>> I noticed that in the example code 
>>> (adwords.axis.v201402.misc.UploadImage.java) the 

Re: Adwords v201802

2018-02-26 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

Currently, we do not have any new updates from the team. Please refer to 
this 

 API 
sunset and release schedule for more information. You can also keep an eye 
out on our blog 
 for more 
updates about upcoming releases or announcements. You can also join the API 
announcements forum  to 
keep you posted on any future updates. 

Regards,
Bharani, AdWords API Team

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

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


Re: Unable to download reports despite waiting for 2 days

2018-02-26 Thread 'Milind Sankeshware (AdWords API Team)' via AdWords API Forum
Hi Chirag,

The RateExceededError 

 with 
the trigger "Basic Access Daily Reporting Quota" indicates that you have 
reached the daily quota of report downloads associated with your basic 
access 
 
developer 
token. Please note that, the daily operational limit is based on the access 
level of your developer token and not at the user level. You could also 
check these throttling mechanisms 

 to 
avoid the rate limit errors.

If your use case requires to make more than 10,000 API operations and 1000 
report downloads per day, you can apply for Standard access 
 
by 
filling out this application form 
. Standard access 
allows the developer to make unlimited number of API operations and report 
downloads per day. 

Thanks,
Milind, AdWords API Team.

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

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


Re: C#.NET : Implement LocationSearchParameter in Targetingideas

2018-02-26 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Ola, 

Are you trying to get Keyword Ideas and setting your desired location as a 
search parameter? If so, you could refer to the complete code samples here 
.
 
The linked guide should also be helpful while working with the 
TargetingIdeaService 
.
 
Please give that a try and let me know if you face any issues. If your 
question was different, could you elaborate? 

Thanks,
Sreelakshmi, AdWords API Team

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

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


Re: Adding and removing IpBlock

2018-02-26 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Filip, 

To make any calls to the AdWords API, you will need the OAuth credentials 
(client Id and client secret) and OAuth tokens (refresh token/access 
token). From your note, it looks like you have already done this step and 
ready to make the API call. Are you trying to make calls against the 
client's AdWords account? If so, please note that the clients will need to 
authorize your call (manually accept the prompt and share the authorization 
code with you) while generating the refresh token. More details about OAth 
setup can be found here 
.
 
The guide on make your first API call 
 should 
be helpful for you. 

To add the Ip block, you will need to use the CampaignCriterionService 

 and 
add the IpBlock 

 as 
a negative criterion. We don't have a sample for this scenario but you 
could check AddCampaignTargetingCriteria 

 sample 
in Java which shows how a keyword can be added as negative campaign 
criterion. You will need to modify the code to add the IpBlock instead. 
Samples in other languages can also be found here 
. Let me 
know if you have any additional questions. 

Thanks,
Sreelakshmi, AdWords API Team

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

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


Video Performance Report

2018-02-26 Thread 'Timna Carmel' via AdWords API Forum
Hi Guys,

Based on the documentation found 
here: 
https://developers.google.com/adwords/api/docs/appendix/reports/video-performance-report#conversioncategoryname

Conversions are not compatible with ConversionCategoryName or with 
ConversionTypeName for the video performance report.
This limitation makes no sense and I see it has been removed from other 
reports - https://groups.google.com/forum/#!topic/adwords-api/lnh8NEZy0Tg
There is no real reason you'd be able to get conversion Value\Revenue with 
conversion tag, but not the conversions metric. 

Are you able to remove that limitation or explain why it's there?

Thanks,

Timna

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

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


Re: Adwords v201802

2018-02-26 Thread lcolautti
It's almost the end of February and I don't see any specific 
details/release notes for the 201802 release. I'm trying to wait for this 
release to come out before upgrading from 201708 version (since the 
deprecation schedule is now much more aggressive). 

Any ideas on a release date for 201802? 
Alternately, if the 201802 release is being pushed back, will the 
deprecation schedule also be delayed? 

TIA

On Wednesday, January 24, 2018 at 11:01:00 AM UTC-5, Bharani Cherukuri 
(AdWords API Team) wrote:
>
> Hello, 
>
> We will not be able to provide an exact timeline of when v201802 will be 
> released. It is scheduled to be released in Feb, 2018. Please refer to 
> this 
> 
>  API 
> sunset and release schedule for more information. You can also keep an eye 
> out on our blog 
>  for more 
> updates about upcoming releases or announcements. You can also join the API 
> announcements forum  to 
> keep you posted on any future updates. 
>
> Regards,
> Bharani, AdWords API Team
>

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

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


Re: Creating a MCC test account.

2018-02-26 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi,

Thanks for sending me your customer ID. I'm responding here in case it's 
helpful to others.

The new AdWords Experience doesn't show the red banner, but if you log into 
your account and click on the wrench icon and *Return to previous AdWords*, 
you will see the banner.



I'll follow up with the UI team to see if they will add a similar banner to 
the new AdWords Experience. Sorry for the confusion this caused.

Cheers,
Josh, AdWords API Team

On Sunday, February 25, 2018 at 9:11:41 AM UTC-5, Josh Radcliff (AdWords 
API Team) wrote:
>
> Hi,
>
> That link looks correct. Could you send the client customer ID of the 
> account you created only to me by clicking *Reply privately to author* on 
> this message?
>
> Thank you,
> Josh, AdWords API Team
>
> On Friday, February 23, 2018 at 5:12:32 AM UTC-5, dwchg...@gmail.com 
> wrote:
>>
>> Hi,
>>
>> I'm having an issue creating test Google Adwords account. I'm using the 
>> link https://adwords.google.com/um/Welcome/Home?sf=mt=0=1#ta
>> and I don't see the red notice on the top that it is a test account. 
>>
>> Thanks,
>>
>> On Monday, November 27, 2017 at 9:47:42 PM UTC+8, Josh Radcliff (AdWords 
>> API Team) wrote:
>>>
>>> Hi,
>>>
>>> When clicking on that link do you:
>>>
>>>1. Open the link in an incongito window?
>>>2. See *Test Account* on the form as mentioned in my earlier post 
>>>
>>> 
>>>?
>>>
>>> If you'd like me to take a look at the accounts you created, you can 
>>> send the client customer IDs (xxx-xxx-) of those accounts only to me by 
>>> clicking *Reply privately to author* on this post.
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Monday, November 27, 2017 at 5:27:09 AM UTC-5, Dominique Star wrote:

 I'm having the same issue. Any account created with the 
 https://adwords.google.com/um/Welcome/Home?a=1=mt=0#ta 
 link is not showing as a test ad account.

 On Friday, June 16, 2017 at 8:02:02 AM UTC-7, Josh Radcliff (AdWords 
 API Team) wrote:
>
> Hi all,
>
> We recently made a change to address this issue. Please try creating 
> an account again and post back here if you still encounter problems.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, June 5, 2017 at 10:22:59 AM UTC-4, Josh Radcliff (AdWords 
> API Team) wrote:
>>
>> Hi,
>>
>> If you actually created an account, could you send the email address 
>> of that account *only to me* by clicking *Reply privately to author* on 
>> this message? Also, please let me know your physical locale, as that 
>> will 
>> help us determine if this is locale-related.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Monday, June 5, 2017 at 1:57:43 AM UTC-4, Samuel Gjabel wrote:
>>>
>>> Same here! Trying to create a test ad account and nothing happened. 
>>> IDK, but i think thats test accounts in a google and FB are the 
>>> problem. 
>>> Couse on the FB i got same result! :p 
>>>
>>> Dňa streda, 22. februára 2017 16:22:46 UTC+1 Peter Olvecký 
>>> napísal(-a):

 Hi guys,

 I've just spent about an hour trying to setup the test account. It 
 doesn't work.

 Even though the page says it's for the creation of test accounts 
 ("Welcome to AdWords manager accounts (Test Account)") and the button 
 at 
 the bottom of the page also reads "Create a test account", two things 
 happen when I hit the button:

 1. The same form loads again (
 https://adwords.google.com/um/Welcome/Home?a=1=mt=0#ta)
 2. I am being redirected to page for creation of production client 
 account (
 https://adwords.google.com/um/Welcome/Home?a=1=0=bb#ac)

 Can you please help me?

 Thank you,
 Peter

>>>

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

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

Discrepancies ad performance report/ criteria performance report

2018-02-26 Thread am2045

Hi,

When I sum up my basic KPIs (clicks, cost, ...) based 

   - (1) on the ad performance report and 
   - (2) on the criteria performance report

for a whole account, how will the results differ from each other and from 
the allover values that I see in the AdWords UI?


A) Campaign types that have ads but no criteria (as in the criteria 
performance report):

   - Universal App Campaigns
   - Universal Shopping Campaigns?
   
B) Campaign types that have criteria but no ads:

   - Shopping Campaigns do have ads, right?

C) Campaign types that cannot be seen in the ad performance report and in 
the criteria performance report:

   - None?


Is this right so far? Am I missing any other possible differences?

Thanks,
Andreas

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

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


View-through conversions mismatch between API and UI

2018-02-26 Thread Tiana S.
Hi guys,

As the title states: the view-through conversion numbers are different 
between the UI and the API.
In the UI view-through conversions are also shown for Search campaigns, but 
this isn't the case for the API.

This is also reflected in their definitions:

API:

> The total number of view-through conversions. These happen when a customer 
> sees a Display network ad, then later completes a conversion on your site 
> without interacting with (e.g. clicking on) another ad.


Interface:

> “View-through conversions” occur when someone sees your ad, doesn’t 
> interact with it, then later performs a conversion action. For example, 
> someone sees a video ad but doesn’t watch long enough to have it count as a 
> view or engagement, or someone sees a search ad but doesn’t click it. If 
> that person later performs a conversion action (like making a purchase or 
> filling out a form), that would be counted as a view-through conversion.


Is this by design, or will the API/interface be updated in the (near) 
future so their definitions and numbers match?

Thanks,

Tiana 

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

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


Re: How To Determine if Account is Express or Regular?

2018-02-26 Thread Zweitze
You could try to create a new campaign in the account with the flag 
ValidationOnly=true.
Doing so will not actually create a campaign, but it will raise an error 
when the call was not valid.

Note such a request may fail due to different reasons, eg. campaign name is 
not unique, Google disabled the account for multiple policy violations, the 
user logged in with a read-only account, etc.etc.
My point: if it fails then you should not report that the account is an 
express account, instead just report that campaigns appear to be read-only.



On Sunday, February 25, 2018 at 12:05:35 AM UTC+1, Nick Harris wrote:
>
> It is suboptimal that the API can't be used to mutate Express campaigns 
> .
>  Is 
> there a way to determine if an Account is Express? That way I could just 
> have my app ignore any Express accounts entirely. 
>

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

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


Unable to download reports despite waiting for 2 days

2018-02-26 Thread chirag dakshikar
This is the error I am getting I waited for two days to get the download 
reports count reset yet I am unable to download any reports.
[25827/1] Loading report for customer ID "8242399927" into 
"/home/ubuntu/samir_adwords/reports/geo/adgroup_8242399927.csv"...
WARNING:googleads.adwords.report_downloader:Request Summary: 
{'clientCustomerId': '8242399927', 'skipReportHeader': 'True', 
'includeZeroImpressions': 'False', 'errorMessage': 'RateExceededError.RATE_EXCEEDEDBasic
 
Access Daily Reporting 
Quota', 
'server': 'adwords.google.com', 'skipColumnHeader': False, 
'skipReportSummary': 'True', 'isError': True}
[25827/2] Loading report for customer ID "8242399927" into 
"/home/ubuntu/samir_adwords/reports/geo/adgroup_8242399927.csv"...
WARNING:googleads.adwords.report_downloader:Request Summary: 
{'clientCustomerId': '8242399927', 'skipReportHeader': 'True', 
'includeZeroImpressions': 'False', 'errorMessage': 'RateExceededError.RATE_EXCEEDEDBasic
 
Access Daily Reporting 
Quota', 
'server': 'adwords.google.com', 'skipColumnHeader': False, 
'skipReportSummary': 'True', 'isError': True}
[25827/3] Loading report for customer ID "8242399927" into 
"/home/ubuntu/samir_adwords/reports/geo/adgroup_8242399927.csv"...
WARNING:googleads.adwords.report_downloader:Request Summary: 
{'clientCustomerId': '8242399927', 'skipReportHeader': 'True', 
'includeZeroImpressions': 'False', 'errorMessage': 'RateExceededError.RATE_EXCEEDEDBasic
 
Access Daily Reporting 
Quota', 
'server': 'adwords.google.com', 'skipColumnHeader': False, 
'skipReportSummary': 'True', 'isError': True}
[25827/4] Loading report for customer ID "8242399927" into 
"/home/ubuntu/samir_adwords/reports/geo/adgroup_8242399927.csv"...
WARNING:googleads.adwords.report_downloader:Request Summary: 
{'clientCustomerId': '8242399927', 'skipReportHeader': 'True', 
'includeZeroImpressions': 'False', 'errorMessage': 'RateExceededError.RATE_EXCEEDEDBasic
 
Access Daily Reporting 
Quota', 
'server': 'adwords.google.com', 'skipColumnHeader': False, 
'skipReportSummary': 'True', 'isError': True}
[25827/5] Loading report for customer ID "8242399927" into 
"/home/ubuntu/samir_adwords/reports/geo/adgroup_8242399927.csv"...
WARNING:googleads.adwords.report_downloader:Request Summary: 
{'clientCustomerId': '8242399927', 'skipReportHeader': 'True', 
'includeZeroImpressions': 'False', 'errorMessage': 'RateExceededError.RATE_EXCEEDEDBasic
 
Access Daily Reporting 
Quota', 
'server': 'adwords.google.com', 'skipColumnHeader': False, 
'skipReportSummary': 'True', 'isError': True}
Report failed for customer ID "8242399927" with code "400" after "6" 
retries.
Finished downloading reports with the following results:
Report for CustomerId "2174175089" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "1191454216" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "4575582914" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "6274701030" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "7976736836" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "5947505659" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "9647673312" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "6324241530" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "6538845563" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "8787606930" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "1198262981" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "9361933689" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: None.
Report for CustomerId "6860631504" failed with error code "400" and 
message: Type: RateExceededError.RATE_EXCEEDED
Trigger: Basic Access Daily Reporting Quota
Field Path: 

Location of adsapi_php.ini

2018-02-26 Thread Marty G
HI Guys

I've been using the Adwords API for around a year or so, I always used the 
auth.ini file on each api update we managed to get it working
but recently we upgraded to the latest API, using composer to install to 
our classes folder *C:\xampp\htdocs\main-application\classes\*
to which we have the vendor folder & other folders needed to run the api, 
I've filled out the adsapi_php.ini with our project details, but while 
running our test file we encounter the fatal error & missing ini file.

I printed the $_SERVER output in order to find the home directory & tried 
re-locating the ini file to various locations on the server install, but 
still get the fatal error


Fatal error: Uncaught exception 'InvalidArgumentException' with message 
'Config file not found as specified: 'adsapi_php.ini'.

Home directory could not be located so it was not searched.' in 
C:\xampp\htdocs\main-application\classes\google-adwords\vendor\googleads\googleads-php-lib\src\Google\AdsApi\Common\ConfigurationLoader.php
 
on line 77


Array
(
[MIBDIRS] => C:/xampp/php/extras/mibs
[MYSQL_HOME] => \xampp\mysql\bin
[OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf
[PHP_PEAR_SYSCONF_DIR] => \xampp\php
[PHPRC] => \xampp\php
[TMP] => \xampp\tmp
[HTTP_HOST] => localhost
[HTTP_CONNECTION] => keep-alive
[HTTP_UPGRADE_INSECURE_REQUESTS] => 1
[HTTP_USER_AGENT] => Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 
(KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36
[HTTP_ACCEPT] => 
text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
[HTTP_ACCEPT_ENCODING] => gzip, deflate, br
[HTTP_ACCEPT_LANGUAGE] => en-GB,en-US;q=0.9,en;q=0.8
[PATH] => C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\AMD 
APP\bin\x86_64;C:\Program Files (x86)\AMD 
APP\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program
 
Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files 
(x86)\Skype\Phone\;
[SystemRoot] => C:\Windows
[COMSPEC] => C:\Windows\system32\cmd.exe
[PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
[WINDIR] => C:\Windows
[SERVER_SIGNATURE] => Apache/2.4.12 (Win32) OpenSSL/1.0.1l Server at 
localhost Port 80
[SERVER_SOFTWARE] => Apache/2.4.12 (Win32) OpenSSL/1.0.1l
[SERVER_NAME] => localhost
[SERVER_ADDR] => ::1
[SERVER_PORT] => 80
[REMOTE_ADDR] => ::1
[DOCUMENT_ROOT] => C:/xampp/htdocs
[REQUEST_SCHEME] => http
[CONTEXT_PREFIX] => 
[CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs
[SERVER_ADMIN] => testsupport @ test.co.uk
[SCRIPT_FILENAME] => C:/xampp/htdocs/main-application/test/test-adwords.php 
[REMOTE_PORT] => 61099 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => 
HTTP/1.1 [REQUEST_METHOD] => GET [QUERY_STRING] => [REQUEST_URI] => /
[REMOTE_PORT] => 61099
[GATEWAY_INTERFACE] => CGI/1.1
[SERVER_PROTOCOL] => HTTP/1.1
[REQUEST_METHOD] => GET
[QUERY_STRING] => 
[REQUEST_URI] => /
[REMOTE_PORT] => 61099
[GATEWAY_INTERFACE] => CGI/1.1
[SERVER_PROTOCOL] => HTTP/1.1
[REQUEST_METHOD] => GET
[QUERY_STRING] => 
[REQUEST_URI] => /main-application/test/test-adwords.php
[SCRIPT_NAME] => /main-application/test/test-adwords.php
[PHP_SELF] => /main-application/test/test-adwords.php 
[REQUEST_TIME_FLOAT] => 1519638340.619
[REQUEST_TIME] => 1519638340
) 


I've tried locating our ini file to:

   - C:\xampp\htdocs\
   - C:\xampp\htdocs\main-application\
   - C:\xampp\htdocs\main-application\classes\
   - C:\xampp\htdocs\main-application\classes\google-adwords
   - C:\xampp\htdocs\main-application\classes\google-adwords\vendor\

Still getting the same error..!


Cheers

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

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


Re: How to make a copy of campaigns/ad groups?

2018-02-26 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi,

The first answer provided by Sreelakshmi in the forum thread you linked is 
still valid. Since there is still no direct feature that would clone an 
entity (e.g. campaigns, ad groups, etc.), then you need to follow the steps 
below (for copying a campaign and its dependencies) :

   - Use CampaignService.get() 
   

 method 
   to get the specific campaign with fields that you want to copy from.
   - Using the returned object in the first step, make necessary changes 
   like changing the campaign name and then use that object as parameter in 
   CampaignService.mutate() 
   

   .
   - Since the step 2 only creates a new campaign, and not its dependencies 
   like ad groups and criterion, then you need to use the service of each 
   entity (e.g. AdGroupService 
   

   , AdGroupCriterionService 
   
,
 
   etc.) to copy these entities and repeat steps 1 and 2 for each service.

As for your concern if we have a full list of objects/entities that you 
need to copy from a campaign, we only have a guide 

 for 
the object hierarchies that you can refer from.

As additional information, you can also check the Campaign Drafts and 
Experiments guide 

 if 
you wish to create draft and trial campaigns.

Let me know if you have further clarifications.

Thanks,
Vincent
AdWords API Team

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

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


Adding and removing IpBlock

2018-02-26 Thread Filip J
Hi, I'm struggling with Google AdWords Api since few days. I automatized 
getting refresh tokens for users. I'm storing it in database. Now I want to 
let them add IpBlock by my panel throught Api. I do not have idea how to 
start. Are refresh token, client id and client secret enough to create 
OAuth2Token? What to do next?

Greetings ;)

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

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


C#.NET : Implement LocationSearchParameter in Targetingideas

2018-02-26 Thread Oladotun Ogunsulire
Hi

I am trying to implement the LocationSearchParameter in C#.NET, I found some 
php code
and roughly converted it to get

`Location unitedkingdom = new Location();
unitedkingdom.id = 2826; // UK
Location[] loc = { unitedkingdom } ;
LocationSearchParameter mylocationParam = new 
LocationSearchParameter();
mylocationParam.locations = loc ;
searchParameters.Add(mylocationParam);`

I cant say if its working , and it doees not look correct to me.

There is not code sample for this in the documentation.

Cheers

Ola

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

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


Re: Need to destination_url from Search Query Performance report

2018-02-26 Thread service
Thanks Vincent for the response

On Saturday, February 24, 2018 at 8:50:18 AM UTC-6, 
ser...@mansionselect.com wrote:
>
> Hi,
>   We use Search Query Performance report to get the search terms 
> performance from Google Adwords. We have Shopping Campaigns, for them the 
> destination_url returns as empty. Is there any way to get the 
> destination_url of the search terms for the Shopping campaigns.
>   
>   Please let me know or provide me a reference it will be useful.
>   
> Thanks  
>

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

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


Pulling performance by "Ad" level instead of "Ad Group" Level

2018-02-26 Thread sameul . nasir
Hi All,

Apologies if this has been asked many times, but I am fairly new to the 
AdWords Reporting API and I was curious if we are able to pull performance 
by ad within any of the reporting types in the AdWords Reporting API. I've 
been referring to this documentation 
yet I am 
unable to find the appropriate report type. Any help would be greatly 
appreciated! 


Thanks,
Sam

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

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


Who to reach out for adwords API troubleshooting request by client?

2018-02-26 Thread devinab via AdWords API Forum

A client has trouble in adwords API script and gTech is not helping. Is 
there any team/ldap to reach out to under such circumstances.?

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

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


Structure Report for CustomerNegativeCriterion

2018-02-26 Thread Dorian Kind
Hi,

since API version 201710 there is the possibility to add negative criteria 
on the account level via the CustomerNegativeCriterionService. As there can 
be up to 65,000 of these negative criteria, I was a bit surprised to find 
that apparently there is no structure report that can be used to determine 
which negative placements already are set on an account in order to not 
upload these again.

So it appears that we'll have to use the CustomerNegativeCriterionService 
in order to retrieve the list of existing CustomerNegativeCriterion 
instances, but this is not necessarily straightforward because of the page 
size limit of 10'000 entries and the fact that there is no obvious way of 
segmenting the result (you obviously cannot fetch them separately by 
campaign or ad group ID, for example). Taking that into account, I was 
wondering whether we should just upload our local list of negative criteria 
without first checking if there are any criteria already present. Or is 
there a better way of synchronizing account-level negative criteria?

Thanks for any feedback and best regards,
Dorian

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

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


Re: How to remove an ad schedule using id?

2018-02-26 Thread Ken Dan Tinio
Thanks been look for that! Works amazingly!

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

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


no result in criteria csv for Region ID from Report response

2018-02-26 Thread 'Raneen Bsais' via AdWords API Forum
Hi,
we are using the adwords api v201710
we getting this row from the report csv response (show attach file)
we getting this row from adwords api locations criteria here: 
(https://developers.google.com/adwords/api/docs/appendix/geotargeting) 
this row show the id 21136 and the Target Type is state not region

Criteria ID  Name Canonical Name Parent ID Country Code   TargetType 
Status 
21136 Arizona Arizona,United States 2840 US State Active 
Thanks, 
Raneen.

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

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


How to download AdWords CAMPAIGN_PERFORMANCE_REPORT on monthly basis

2018-02-26 Thread Adeel Nazir


I'm a Java developer and currently, I'm 
downloading CAMPAIGN_PERFORMANCE_REPORT on the daily basis as I think this 
is the default behavior of Google AdWords.

I want to download all_time data for CAMPAIGN_PERFORMANCE_REPORT on monthly 
basis.

Like cost, conversions and clicks etc month wise.

For Jan cost->$100

  Feb cost ->$60
and so on...

Thanks in advance

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

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


Config file not found as specified - Home directory could not be located so it was not searched

2018-02-26 Thread Marty G
Hi Guys, 

I've been using Adwords API for around a year or so, on a mini project 
using xampp & with each new release, I've managed to get it working using 
the old auth.ini file.

So I've downloaded the latest Google Adwords API using composer & installed 
it to our classes directory

   - */site-root/main-application/classes/google-adwords/ *
   
I've setup all our details within the new config file "*adsapi_php.ini*" 
which all looks good!
but... for the life of me, I just cant figure out where the "
*adsapi_php.ini*" file should be located, 
so far I've tried:

   - /site-root/
   - /site-root/main-application/
   - /site-root/main-application/classes/
   - /site-root/main-application/classes/google-adwords/
   - /site-root/main-application/classes/google-adwords/vendor/
   - /site-root/main-application/classes/google-adwords/vendor/googleads/

Each time I try a new location I still get the same fatal error:

Uncaught exception 'InvalidArgumentException' with message 'Config file not 
found as specified: 'adsapi_php.ini'. 
Home directory could not be located so it was not searched.' in C:\xampp\
htdocs\main-application\classes\google-adwords\vendor\googleads\googleads-
php-lib\src\Google\AdsApi\Common\ConfigurationLoader.php on line 77

*Note: *running the *$_SERVER* global to find the home path, 
I would assume it's the [*DOCUMENT_ROOT*] => C:/xampp/htdocs
 
Array ( [MIBDIRS] => C:/xampp/php/extras/mibs [MYSQL_HOME] => 
\xampp\mysql\bin [OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf 
[PHP_PEAR_SYSCONF_DIR] => \xampp\php [PHPRC] => \xampp\php [TMP] => 
\xampp\tmp [HTTP_HOST] => 86.29.37.141 [HTTP_CONNECTION] => keep-alive 
[HTTP_CACHE_CONTROL] => max-age=0 [HTTP_USER_AGENT] => Mozilla/5.0 (Windows 
NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) 
Chrome/63.0.3239.132 Safari/537.36 [HTTP_UPGRADE_INSECURE_REQUESTS] => 1 
[HTTP_ACCEPT] => 
text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
 
[HTTP_ACCEPT_ENCODING] => gzip, deflate [HTTP_ACCEPT_LANGUAGE] => 
en-GB,en-US;q=0.9,en;q=0.8,fr;q=0.7 [HTTP_COOKIE] => 
PHPSESSID=5lfeujbh3ffdvn6d2c93vtjdg2 [PATH] => 
C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\AMD 
APP\bin\x86_64;C:\Program Files (x86)\AMD 
APP\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program
 
Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files 
(x86)\Skype\Phone\; [SystemRoot] => C:\Windows [COMSPEC] => 
C:\Windows\system32\cmd.exe [PATHEXT] => 
.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC [WINDIR] => 
C:\Windows [SERVER_SIGNATURE] => Apache/2.4.12 (Win32) OpenSSL/1.0.1l 
Server at 86.29.37.141 Port 80 [SERVER_SOFTWARE] => Apache/2.4.12 (Win32) 
OpenSSL/1.0.1l [SERVER_NAME] => 86.29.37.141 [SERVER_ADDR] => 192.168.0.18 
[SERVER_PORT] => 80 [REMOTE_ADDR] => 86.27.46.116 [*DOCUMENT_ROOT*] => 
C:/xampp/htdocs [REQUEST_SCHEME] => http [CONTEXT_PREFIX] => 
[CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs [SERVER_ADMIN] => test @ 
testserver.co.uk [SCRIPT_FILENAME] => 
C:/xampp/htdocs/main-application/test/test-adwords.php 
[REMOTE_PORT] => 62129 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => 
HTTP/1.1 [REQUEST_METHOD] => GET [QUERY_STRING] => [REQUEST_URI] => /
main-application/test/test-adwords.php [SCRIPT_NAME] => 
/main-application/test/test-adwords.php 
[PHP_SELF] => /main-application/test/test-adwords.php [REQUEST_TIME_FLOAT] 
=> 1519396759.455 [REQUEST_TIME] => 1519396759 ) 


What am I missing?

Cheers

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

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


How to make a copy of campaigns/ad groups?

2018-02-26 Thread sa
Hi,

I am currently trying to make a copy of an AdWords campaign through 
AdWords' API in order to make changes and optimise the original campaign 
without affecting the original campaign and make performance comparisons. I 
saw other questions 
similar 
this this before but was asked a while ago; I would like to know if the 
process in duplicating an AdWords Campaign the same? If it is still the 
same, are there any new documentation that I can use to figure out the full 
list of objects I need to create a copy of in order to complete the 
campaign's duplication?

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

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


Re: Developer token cannot be null

2018-02-26 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi KDJ,

Can you confirm if you have set your value correctly for the developer 
token field 

 in 
your property file and still the null error is generated? If so, can you 
provide to me your whole SOAP request and response logs via *Reply 
privately to author option* so I can further check if indeed the developer 
token (with REDACTED value) was added in the SOAP header? If you haven't 
enabled the SOAP logs yet, you can enable it by following this guide 
.

Thanks,
Vincent
AdWords API Team

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

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


Re: How To Determine if Account is Express or Regular?

2018-02-26 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Nick,

Currently, there is no way in the AdWords API to determine if your AdWords 
account is an AdWords Express account. You can only determine AdWords 
express campaigns in the API as you can see on this blog post 

.

For the AdWords account itself, I believe you can only identify this in the 
AdWords UI by logging in to your MCC, and on the list of the accounts, you 
can see the "Account type" per account. The account type will be "AdWords 
Express" if the client account is an AdWords Express account.

Thanks,
Vincent
AdWords API Team

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

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