RE: Exclude specific region with radius from bulk list

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Tom,

I'm afraid there's no way to exclude locations based on radius as the
Proximity
  
criterion

type is only targetable.

Thanks and regards,
Luis
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/14/19 03:46:58 tom.t...@hephasurgical.com wrote:


I'm targeting whole Europe (based on a bulk list of countries) and I want
to exclude some cities *with a radius *(50km) from this bulk list.
Only the option to exclude specific places is available, how could I work
around this?


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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ug1g8eumj001ghsmp60001bqo4z6cmjechh6so30c1g68qj0cpi%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Why I can't mutate youtubeVideoMediaIds list in UniversalAppCampaignSetting in CampaignService.CampaignOperation

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

If you're going to mutate your youtubeVideoMediaIds
,
you should use the youtubeVideoMediaIdsOps
  
instead

and use the ListOperations
  
to

update the list of your youtubeVideoMediaIds. You may check this guide
  
for

more details about the ListOperations in UAC.

Thanks and regards,
Luis
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/14/19 03:09:13 tir...@gmail.com wrote:

Hello! I'm using CampaignService for updating of youtubeVideoMediaIds in my
Campaign (UniversalAppCampaign)

https://developers.google.com/adwords/api/docs/reference/v201809/CampaignService.CampaignOperation

And trying to use this:

from googleads import adwords
client = adwords.AdWordsClient.LoadFromStorage("googleads.yaml") # path to
yaml file wherever it exists
campaign_service = client.GetService('CampaignService', version='v201809')
campaign_id = 00
video_ids = [11, 12] # Input MediaId(s) here
def update_media_data(campaign_service, campaign_id, video_ids):
operations = [{
'operator': 'SET', #REMOVE using too, but this cause an error
'operand': {
'xsi_type': 'Campaign',
'id': campaign_id,
'settings': {
'xsi_type': 'UniversalAppCampaignSetting',
'youtubeVideoMediaIds': video_ids
}
}
}]
return campaign_service.mutate(operations)

What I'm doing wrong? If I try to update video list with new videos using
SET and
Why I can't use REMOVE to remove some video_ids from this list of
youtubeVideoMediaIds how to do it correct?

Thank you!

I have full list of youtube videos - 20 videos on Campaign. But I can't
remove any videos with this API call...

def update_media_data(campaign_service, campaign_id, video_ids):
operations = [{
'operator': 'REMOVE' ###cause an error
'operand': {
'xsi_type': 'Campaign',
'id': campaign_id,
'settings': {
'xsi_type': 'UniversalAppCampaignSetting',
'youtubeVideoMediaIds': video_ids
}
}
}]

Error summary: {'faultMessage': '[OperatorError.OPERATOR_NOT_SUPPORTED @
operations[0]]', 'requestId': '000581cb388671830ae9ee0f530ff774',
'serviceName': 'CampaignService', 'methodName': 'mutate', 'operations':
'1', 'responseTime': '189'}
Traceback (most recent call last):
  File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/googleads/common.py",
line 1382, in MakeSoapRequest
*packed_args, _soapheaders=soap_headers)['body']['rval']
  File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/proxy.py",
line 42, in __call__
self._op_name, args, kwargs)
  File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py",
line 132, in send
return self.process_reply(client, operation_obj, response)
  File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py",
line 194, in process_reply
return self.process_error(doc, operation)
  File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py",
line 299, in process_error
detail=fault_node.find('detail'))
zeep.exceptions.Fault: [OperatorError.OPERATOR_NOT_SUPPORTED @
operations[0]]

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/i.tirsky/PycharmProjects/googleadw/campaign_mutate.py", line
78, in 
res = camp.remove_media_ids()
  File "/Users/i.tirsky/PycharmProjects/googleadw/campaign_mutate.py", line
46, in remove_media_ids
return self._update_media_data()
  File "/Users/i.tirsky/PycharmProjects/googleadw/campaign_mutate.py", line
67, in _update_media_data
return
self.campaign_service.mutate(operations)['value'][0]['settings'][1]['youtubeVideoMediaIds']
  File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/googleads/common.py",
line 1394, in MakeSoapRequest
e.detail, errors=error_list, message=e.message)
googleads.errors.GoogleAdsServerFault:
[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]]

Process finished with exit code 1


I think I can only update (add new video to list 

Re: customer sync service changed criteria

2019-02-13 Thread cv
Hello Bharani,

Yes, there were a issue.

I am seeing AdGroupChangeData under the API, but under the UI last change 
was recorded on 11Jan2019.
No idea what the change is about, that I am receiving under the API, but 
not in UI.


Thanks,


On Wednesday, 13 February 2019 22:28:58 UTC+5:30, googleadsapi-forumadvisor 
wrote:
>
> Hello Chirag, 
>
> The AdGroupChangeData will include the IDs of the changedCriteria. In your 
> response the returned criteria IDs are for which the changes were made in 
> that specific ad group. If this does not address your concern, could you 
> please elaborate?
>
> Thanks,
> Bharani, AdWords API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

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

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


RE: [1-1254000025157] How can I get YouTube video's file name?

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Yoshimasa,

It turns out that the sourceUrl will be populated for other cases like
AUDIO and IMAGE, but not for VIDEO.

Best,
Thanet, AdWords API Team
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/12/19 07:53:16 lanabe.lan...@gmail.com wrote:

Hi Thanet,

Has there been any news about sourceUrl?

Thanks!

---

Yoshimasa

On Thursday, January 31, 2019 at 4:17:40 PM UTC+9, Thanet Knack
Praneenararat (AdWords API Team) wrote:

Hello Tanabe,

I'll check with Engineering and get back to you soon.

Best,
Thanet, AdWords API Team

On Tuesday, January 29, 2019 at 9:41:59 PM UTC+9, Yoshimasa Tanabe wrote:

Hi,

Is there any way to get YouTube video's original file name(like foo.mp4)
the user uploaded?

I referred the API doc[1] and found the following fields look like related.

* sourceUrl: The URL of where the original media was downloaded from (or a
file name).
* name: The name of the media. The name can be used by clients to help
identify previously uploaded media.

But I get the Video object has the empty sourceUrl and the name is
Video(YouTube) title, not the file name.


{
  name=,
  sourceUrl=, // empty
  // other fields
  ...
}


Am I missing something?

...

Code snippet is here(Scala).

* "com.google.api-ads" % "ads-lib"  % 4.1.0
* "com.google.api-ads" % "adwords-axis" % 4.1.0

import com.google.api.ads.adwords.axis.factory.AdWordsServices
import com.google.api.ads.adwords.axis.utils.v201806.SelectorBuilder
import com.google.api.ads.adwords.axis.v201806.cm.MediaServiceInterface
import com.google.api.ads.adwords.lib.client.AdWordsSession
import com.google.api.ads.adwords.lib.selectorfields.v201806.cm.MediaField


val mediaServiceSelector = new SelectorBuilder()
  .fields(
MediaField.MediaId,
MediaField.YouTubeVideoIdString,
MediaField.Name,
MediaField.SourceUrl,
MediaField.StreamingUrl
  )
  .in(MediaField.Type, "VIDEO")
  .build()


val session = new AdWordsSession.Builder()
  .withOAuth2Credential()
  .withDeveloperToken()
  .withClientCustomerId()
  .build()


AdWordsServices.getInstance()
  .get(session, classOf[MediaServiceInterface])
  .get(mediaServiceSelector)


[1] https://developers.google.com/adwords/api/docs/reference/
v201806/MediaService.Video
[2] https://developers.google.com/youtube/v3/docs/videos#header_2

---

Yoshimasa

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/18i41m0083ejme0068kipmz64mj2chl6go30c1g68qj2d9n%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Scope of uniqueness for "assetId" identifiers?

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Al,

After discussing this with the team, I could confirm that the assetId is
unique only within an account. I will file a feature request for this to
update the documentation regarding assetId uniqueness.

Regards,
Dannison
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/13/19 11:44:15 googleadsapi-forumadvi...@google.com wrote:

Hi Al,

I can see the documentation you provided and you are right that the assetId
is not explained in the scope of uniqueness. I will discuss this with the
team and get back to you with more information about this.

Regards,
Dannison
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/13/19 06:20:49 adiven...@wordstream.com wrote:

Hello,

Can you tell me what the "scope of uniqueness" is for assetId

values used within Assets?

For example, are these values unique within the scope of a single Google
Ads account, unique across all Google Ads accounts? etc.

I tried to obtain this information from the "Objects, Methods, and
Services"  Objects, Methods, and Services
 -
but "assetId" identifiers are not covered in that guide.

Thank you!

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ijlio49fuo00gj2rek007b50rez68mjec1g6ko30c1g68qj8dph%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: OfflineCredentials.Api.ADWORDS is giving value null and causing nullPointerException

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Since this is already an old thread and for better tracking, could you
create a new one and include the details of your issue through that thread?
We can continue our discussion through there.

Thanks and regards,
Peter
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/14/19 03:47:37 ajantapha...@gmail.com wrote:

I have the same issue. For me to resolve the issue, I did what Patrick
suggested here, but I had to also remove the old jars from the default
spark jars directory.
Could anyone suggest a way to avoid that?

On Wednesday, August 9, 2017 at 4:25:35 AM UTC-4, Patrick McGeever wrote:

Actually we managed to resolve the problem so just in case someone else
stumbles upon this thread I will describe how we resolved it.

In our case we were depending on a jar in our Spark project (Google Adwords
ads-lib) which in turn depended on guava-20.0 and
commons-configuration-1.10.
When we launched our Spark job we were getting the "NoSuchMethodError"
reported above for MapConfiguration in commons-configuration.
We tried to package the commons-configuration lib in our fat jar but this
did not work.
After some investigation we found that Spark includes a bunch of libs in
its build in addition to the provided Spark libs.
It contained older versions of both commons-configuration and guava, of
which the older version of commons-configuration did not contain the
function which was being used by ads-lib (actually I think it was a
constructor with a different signature).

This was in my local Spark installation on my dev machine...
ls -alrh /usr/local/Cellar/apache-
spark/2.2.0/libexec/jars | grep -E 'commons-configuration|\sguava'
-rw-r--r--1 pmcgeever  admin   2.1M Jul  1 00:09 guava-14.0.1.jar
-rw-r--r--1 pmcgeever  admin   292K Jul  1 00:09
commons-configuration-1.6.jar

So we found that no matter what we did this older version of
commons-configuration provided by Spark was being used.
After we resolved this problem we had the same issue with a method not
being found in Guava because the older version provided by Spark was being
used.

The fix...

We provide the jars for commons-configuration-1.10 and guava-20.0 to
spark-submit and instruct it to load them instead of the versions it has in
its build.

e.g.

spark-submit --deploy-mode cluster \
  --jars ./lib/guava-20.0.jar,./lib/commons-configuration-1.10.jar \
   
--conf "spark.driver.extraClassPath=guava-20.0.jar:commons-configuration-1.10.jar"  
\
   
--conf "spark.executor.extraClassPath=guava-20.0.jar:commons-configuration-1.10.jar"  
\

./some_spark_application.jar


I hope this helps someone.


On Friday, 28 July 2017 04:06:34 UTC+1, Peter Oliquino wrote:

Hi Patrick,

This appears to be a very old thread. This said, and also for better
tracking, could you create a new one? We'll continue our discussion on the
issue you are encountering from there.

Best regards,
Peter
AdWords API Team

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To 

Re: Accessing the "Ad Suggestions" setting of an Account through the API?

2019-02-13 Thread David Antunes
Hi,

Are there any updates on the availability of this feature?

Thanks!
David

On Friday, March 30, 2018 at 12:57:27 PM UTC+1, Michael Cloonan (AdWords 
API Team) wrote:
>
> Hello,
>
> I will file a feature request for this, as that does sound impractical. 
> Unfortunately, I cannot comment on any timelines for future releases or 
> when it may eventually be supported, if at all.
>
> Regards,
> Mike, AdWords API Team
>
> On Thursday, March 29, 2018 at 5:07:01 PM UTC-4, Matthew Wawrin wrote:
>>
>> Hi Mike,
>>
>> Is there any timeline as to when we'll be able to control the opt-out 
>> from the API?  We're controlling thousands of client accounts, manually 
>> setting to opt out is a terrible option.
>>
>> Thanks,
>> Matt.
>>
>> On Monday, March 12, 2018 at 6:56:48 AM UTC-5, Michael Cloonan (AdWords 
>> API Team) wrote:
>>>
>>> Hello,
>>>
>>> Modifying this feature is not currently supported in the AdWords API.
>>>
>>> Regards,
>>> Mike, AdWords API Team
>>>
>>> On Friday, March 9, 2018 at 3:44:12 PM UTC-5, Sean Hayes wrote:

 Hello

 I have multiple accounts running on Adwords that are currently using 
 the enabled "Ad Suggestions" setting in the Account Settings.

 I want to disable this setting and rely entirely on Ads I have written 
 myself instead. How do I access this feature to disable it through the 
 API? 
 I know the CustomerService lets me access the "Auto-Tagging" setting which 
 is on the same page on the UI as the one I want changed but it does not 
 seem to let me turn off suggestions.




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

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


Re: OfflineCredentials.Api.ADWORDS is giving value null and causing nullPointerException

2019-02-13 Thread Ajanta Phatak
I have the same issue. For me to resolve the issue, I did what Patrick 
suggested here, but I had to also remove the old jars from the default 
spark jars directory.
Could anyone suggest a way to avoid that?

On Wednesday, August 9, 2017 at 4:25:35 AM UTC-4, Patrick McGeever wrote:
>
> Actually we managed to resolve the problem so just in case someone else 
> stumbles upon this thread I will describe how we resolved it.
>
> In our case we were depending on a jar in our Spark project (Google 
> Adwords ads-lib) which in turn depended on guava-20.0 and 
> commons-configuration-1.10.
> When we launched our Spark job we were getting the "NoSuchMethodError" 
> reported above for MapConfiguration in commons-configuration.
> We tried to package the commons-configuration lib in our fat jar but this 
> did not work.
> After some investigation we found that Spark includes a bunch of libs in 
> its build in addition to the provided Spark libs.
> It contained older versions of both commons-configuration and guava, of 
> which the older version of commons-configuration did not contain the 
> function which was being used by ads-lib (actually I think it was a 
> constructor with a different signature).
>
> This was in my local Spark installation on my dev machine...
> ls -alrh /usr/local/Cellar/apache-
> spark/2.2.0/libexec/jars | grep -E 'commons-configuration|\sguava'
> -rw-r--r--1 pmcgeever  admin   2.1M Jul  1 00:09 guava-14.0.1.jar
> -rw-r--r--1 pmcgeever  admin   292K Jul  1 00:09 
> commons-configuration-1.6.jar
>
> So we found that no matter what we did this older version of 
> commons-configuration provided by Spark was being used.
> After we resolved this problem we had the same issue with a method not 
> being found in Guava because the older version provided by Spark was being 
> used.
>
> The fix...
>
> We provide the jars for commons-configuration-1.10 and guava-20.0 to 
> spark-submit and instruct it to load them instead of the versions it has in 
> its build.
>
> e.g.
>
> spark-submit --deploy-mode cluster \
>   --jars ./lib/guava-20.0.jar,./lib/commons-configuration-1.10.jar \
>   --conf 
> "spark.driver.extraClassPath=guava-20.0.jar:commons-configuration-1.10.jar" \
>   --conf 
> "spark.executor.extraClassPath=guava-20.0.jar:commons-configuration-1.10.jar" 
> \
> ./some_spark_application.jar
>
>
> I hope this helps someone.
>
>
> On Friday, 28 July 2017 04:06:34 UTC+1, Peter Oliquino wrote:
>>
>> Hi Patrick,
>>
>> This appears to be a very old thread. This said, and also for better 
>> tracking, could you create a new one? We'll continue our discussion on the 
>> issue you are encountering from there.
>>
>> Best regards,
>> Peter
>> AdWords API Team
>>
>

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

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


Why I can't mutate youtubeVideoMediaIds list in UniversalAppCampaignSetting in CampaignService.CampaignOperation

2019-02-13 Thread Игорь Тирский
Hello! I'm using CampaignService for updating of youtubeVideoMediaIds in my 
Campaign (UniversalAppCampaign)

https://developers.google.com/adwords/api/docs/reference/v201809/CampaignService.CampaignOperation

And trying to use this:

from googleads import adwords
client = adwords.AdWordsClient.LoadFromStorage("googleads.yaml") # path to 
yaml file wherever it exists
campaign_service = client.GetService('CampaignService', version='v201809')
campaign_id = 00
video_ids = [11, 12] # Input MediaId(s) here
def update_media_data(campaign_service, campaign_id, video_ids):
operations = [{
'operator': 'SET', #REMOVE using too, but this cause an error
'operand': {
'xsi_type': 'Campaign',
'id': campaign_id,
'settings': {
'xsi_type': 'UniversalAppCampaignSetting',
'youtubeVideoMediaIds': video_ids
}
}
}]
return campaign_service.mutate(operations)

What I'm doing wrong? If I try to update video list with new videos using 
SET and
Why I can't use REMOVE to remove some video_ids from this list of 
youtubeVideoMediaIds how to do it correct?

Thank you!

I have full list of youtube videos - 20 videos on Campaign. But I can't 
remove any videos with this API call...

def update_media_data(campaign_service, campaign_id, video_ids):
operations = [{
'operator': 'REMOVE' ###cause an error
'operand': {
'xsi_type': 'Campaign',
'id': campaign_id,
'settings': {
'xsi_type': 'UniversalAppCampaignSetting',
'youtubeVideoMediaIds': video_ids
}
}
}]

Error summary: {'faultMessage': '[OperatorError.OPERATOR_NOT_SUPPORTED @ 
operations[0]]', 'requestId': '000581cb388671830ae9ee0f530ff774', 
'serviceName': 'CampaignService', 'methodName': 'mutate', 'operations': 
'1', 'responseTime': '189'}
Traceback (most recent call last):
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/googleads/common.py",
 
line 1382, in MakeSoapRequest
*packed_args, _soapheaders=soap_headers)['body']['rval']
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/proxy.py",
 
line 42, in __call__
self._op_name, args, kwargs)
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py",
 
line 132, in send
return self.process_reply(client, operation_obj, response)
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py",
 
line 194, in process_reply
return self.process_error(doc, operation)
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py",
 
line 299, in process_error
detail=fault_node.find('detail'))
zeep.exceptions.Fault: [OperatorError.OPERATOR_NOT_SUPPORTED @ 
operations[0]]

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/i.tirsky/PycharmProjects/googleadw/campaign_mutate.py", line 
78, in 
res = camp.remove_media_ids()
  File "/Users/i.tirsky/PycharmProjects/googleadw/campaign_mutate.py", line 
46, in remove_media_ids
return self._update_media_data()
  File "/Users/i.tirsky/PycharmProjects/googleadw/campaign_mutate.py", line 
67, in _update_media_data
return 
self.campaign_service.mutate(operations)['value'][0]['settings'][1]['youtubeVideoMediaIds']
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/googleads/common.py",
 
line 1394, in MakeSoapRequest
e.detail, errors=error_list, message=e.message)
googleads.errors.GoogleAdsServerFault: 
[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]]

Process finished with exit code 1


I think I can only update (add new video to list but not change the list) 
this list via SET command but cant REMOVE any videos(


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

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

Exclude specific region with radius from bulk list

2019-02-13 Thread Tom Thys

I'm targeting whole Europe (based on a bulk list of countries) and I want 
to exclude some cities *with a radius *(50km) from this bulk list.
Only the option to exclude specific places is available, how could I work 
around this?


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

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


Re: Mobile Sitelinks in GAds interface

2019-02-13 Thread Esperanza Arriagada
No, I'm referring to where in the Google Ads interface (besides reports) 
can I see Mobile Sitelinks.
If I'm getting a notification through a script that there is a mobile 
sitelink that leads to a 404 page, *where, in the Google Ads interface, I 
can remove it or disable that mobile sitelink*

On Friday, February 8, 2019 at 5:56:39 PM UTC-3, googleadsapi-forumadvisor 
wrote:
>
> Hello,
>
> Are you referring to setting the mobile device preference via the API? If 
> so, you can use the FeedItemTargetService 
> 
>  
> and set the FeedItemCriterionTarget 
> 
>  
> with criterion as Platform 
> 
>  
> for setting the mobile device preference. You may refer to the code sample 
> in Java 
> 
>  
> on how to use this service. Code samples in other languages can be found 
> here . 
> For more information, please refer to this 
>  Help Center 
> article. If your question was different, could you please elaborate? 
>
> Thanks,
> Milind, AdWords API Team
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

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

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


RE: Product Partition Tree for some campaigns take a while. Suggestions?

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Venkata,

If you are trying to update the bids of individual nodes in a product
partition, you could use the AdGroupCriterionService.mutate()

and update the bids
.
You can point to the specific node using the Id

attribute of the product partition criterion. You could refer to the
UpdateKeyword

sample in Java for a reference and make changes to update the product
partition

criterion. Samples in other languages can be found here
. Please
let me know if you face any issues while trying this.

Thanks,
Sreelakshmi, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/13/19 14:22:45 venkatamunna...@gmail.com wrote:

Reviving an old conversation. If I download the product partition report,
then I would assume to update the bids based on the product partition id, I
will have to construct the ProductPartitionTree internally and send the
mutatable operations?

Any suggestions on how to update ProductPartitionNodes when I downlaod the
ProductPartition report.

On Wednesday, November 14, 2018 at 1:55:57 PM UTC-8, Sreelakshmi Sasidharan
(AdWords API Team) wrote:

Hi Venkata,

Do let me know if you have any additional questions once you take a look.

Thanks,
Sreelakshmi, AdWords API Team

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1a0hmk01gbgpge0002mlhix64mjgc9m70o30c1g68pjie1g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: API - Unable to set aggressive automated targeting and custom bid

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello,

Please find my response below:

*But for my display campaigns, I want to enable*
*1) the aggressive automated targeting*
The aggressive automated targeting is not yet supported through the API.
You will be able to pull the metrics using the criteria ID of 306 which
represents stats associated with aggressive auto-targeting
.


*2) the custom bid to "Keywords"*


*These both options could be find in the settings of an AdGroup of the
UI.But my searches for these options in the API failed.I tried to set the
CriterionTypeGroup::KEYWORD of TargetingSettingDetail but I got an
exception :*
Could you please share the API SOAP logs where you're receiving this
exception, so I can take a look? Please refer to the readMe
 section of
the client library for guidance on how to enable logging. You can reply
back via *Reply privately to author* option.

Regards,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1a0us38088el8a000kvrn8z6cmj6c9p68o30c1g68qj2chn%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Is there a way to push reviews on my business's website to google review of my business?

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Jayavarsan,

It is currently not possible to give reviews to your website through the
AdWords API. Let me know if you have any other questions.

Regards,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tc500go8fd6000m5spow6smjgdhi68o30c1g68qj2c1k%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Keyword Performance Report - Drive template access

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Piergiorgio,

If the question is specific to Google Ads Scripts, could you please post on  
that

forum  so that the
experts there can share the updates? If you are facing issues while using
the AdWords API or the documentation, could you please share more details?

Thanks,
Sreelakshmi, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/13/19 08:41:32 pg.pix...@gmail.com wrote:

Hi everyone,
I have an issue with the Keyword Performance Report, since this script
requires a copy of a Google Drive sheet but the template is unavailable.

The sheet requires authorisation but this is taking more time than expected.

Is there someone that had the same issue/knows how to overcome this?

Thanks,
Piergiorgio

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12jekv00188k8a4000tmrs4w6smjee9j64o30c1g68qj4chg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Transfer all data of Google Ads to BigQuery

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello,

We only address concerns specific to AdWords API and how to pull data from
AdWords account through the API on this forum. For concerns specific to Big
Query we suggest that you reach out to their support channel using the
contact options available here .

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1a0hmk01guj2ce0002m1r2z70mj8dpj64o30c1g68qj0cho%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Bid Adjustments

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Chirag,

You may use the Criteria Performance Report
  
which

will return the stats are the ad group criteria level, one row per ad group
and criteria combination by using the BidModifier
  
field.

Please make sure to set the includeZeroImpressions
  
field

to true to make sure that the bid values are returned even when the
impressions count is zero. You can also use the individual reports like the  
Age

Range Performance Report

 and Gender Performance Report
  
to

pull the Age and Gender demographics bid modifier data. Based on this
article
  
Household

Income is only supported for Video Campaigns in the old UI and it is
supported for Display, Search and Video campaigns in the New UI. In your
case, if you don't have any video campaigns you may not see the income
range metrics. Could you please give this a try and let me know if you have
any questions?

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tc500gjioqe000m1a7sx6cmj4dpg6co30c1g68q3ie9p%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: want migrate php client library from V201802 to V201902.

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello,

The AdWords API v201802 was sunset and the API calls to this version would
have failed from January 20, 2018. You can skip v201806 and migrate to
v201809 and try making the API calls again. You may refer to this blog post
  
for

more information. The error indicates that you might be using an older
version of the client library. Could you try installing the latest version
 of the
PHP client library
  
and

let me know if you're having any issues?

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1a0us3808l71v6000kok6aw68mjidhk64o30c1g68qj6c9h%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: [PHP] Google Ads - How to link an existing Google Adwords (or Ads) Account to my Google Ads MCC ?

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello,

To link the accounts, you can use the ManagedCustomerService.mutateLink
  
API

call. For more information, please refer to this
  
document.

You can find the code samples in that document. Let me know if you have any
further questions.

Thanks,
Milind, AdWords API Team
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tc500gn7iv4000lu3jky70mj8cpl6co30c1g68q3ie9p%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Special characters in the WHERE clause in the AdWords API

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Noemi,

The special characters are not allowed in where clause. This is an expected
behavior. For more information, please refer to this
  
guide.

If you are still facing an issue, please share the query so that I can
assist you further. You can use 'Reply privately to author' option while
responding.

Thanks,
Milind, AdWords API Team
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186vp1800aob84006avu8gy74mj2e9l74o30c1g68qj8cpj%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Frequent time outs while accessing Adwords APIs

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Chaitanya,

I'm Dannison's colleague assisting you on his behalf. Thank you for sharing
the additional details requested. Our team is looking into this issue. I
will keep you posted on the updates.

Regards,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tc500gkgm34000lu8csw60mj4d9p68o30c1g68q3ic9k%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: TOO_MANY_CHANGES error when access customersync service

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Tirtha,

The service would always return campaign ids based on the selector
irrespective of whether it was changed or not. But the campaignChangeStatus

will reflect the correct status which will indicate if the campaign was
modified or not. For example, if you add an adgroup in a campaign, the
campaignChangeStatus

will be FIELDS_UNCHANGED. But the changedAdGroups

will contain an entry corresponding to the new adgroup that was added. The
adGroupChangeStatus

in this case will be NEW. The parent campaign id in this case will not have
the status as changed. I also tried updating an attribute of the adgroup
(for instance the name) and the service did return the specific adgroup in
changedAdGroups
  
with

the adGroupChangeStatus

as FIELDS_CHANGED.

Since you are not able to get the updates via the service, could you please
share the details and SOAP logs of the update that you performed on the ad
group along with the SOAP logs of the CustomerSyncService.get()
?
I can take a closer look. You could share the details using reply privately
to the author option.

Thanks,
Sreelakshmi, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ijlio20818010uit4a006ag3kcz6omjad1j6oo30c1g68qj4d1j%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Product Partition Tree for some campaigns take a while. Suggestions?

2019-02-13 Thread venkata munnangi
Reviving an old conversation. If I download the product partition report, 
then I would assume to update the bids based on the product partition id, I 
will have to construct the ProductPartitionTree internally and send the 
mutatable operations?

Any suggestions on how to update ProductPartitionNodes when I downlaod the 
ProductPartition report.

On Wednesday, November 14, 2018 at 1:55:57 PM UTC-8, Sreelakshmi Sasidharan 
(AdWords API Team) wrote:
>
> Hi Venkata, 
>
> Do let me know if you have any additional questions once you take a look. 
>
> Thanks,
> Sreelakshmi, AdWords API Team
>

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

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


Questions about DynamicSearchAd operations prohibited after March 6, 2019.

2019-02-13 Thread Al
Hello,

I recently read in the Google Ads Developer Blog that you may no longer 
create or update DynamicSearchAd instances in the AdWords API 

 after 
March 6, 2019.

Would it be possible for the team to answer a couple questions that I have 
which arise from the following statement in the above blog posting?

After March 6th, creating these ads through the APIs will fail with an 
> AdGroupAdError.CANNOT_CREATE_DEPRECATED_ADS error, while updating them 
> will result in an AdError.CANNOT_MODIFY_AD error.


My two questions are:

   1. Will the AdError.CANNOT_MODIFY_AD error be returned for a v201809 
   AdWords API AdGroupAdService.mutate() call if the update is merely a SET 
   operation that ischanging the existing DynamicSearchAd's status 
   

field?
   2. Will a v201809 AdWords API AdGroupAdService.mutate() call fail and 
   return an error for a REMOVE operation that is targeting an existing 
   DynamicSearchAd instance?


Thanks!

 

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

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


Re: Campaign Performance Report data differs from time to time in params ImpressionReach and AverageFrequency

2019-02-13 Thread timlukin
Thanks, I have no further questions :)

среда, 13 февраля 2019 г., 17:57:51 UTC+3 пользователь 
googleadsapi-forumadvisor написал:
>
> Hi there,
>
> My colleague and I had reached out to you privately regarding this 
> question as below:
>
> *I was able to replicate the issue. For last month, I can see the values 
> for ImpressionReach 
> 
>  (3,536) 
> , AverageFrequency 
> 
>  (11.1). 
> But for last 3 month, I can see value as --. I ran the campaign performance 
> report for last 1 and 3 month. I can see the behavior in API too. Could you 
> please confirm, if you are seeing the same behavior in API and UI? As the 
> behavior is same in the API and UI, then this issue is not related to 
> AdWords API. You will need to post your questions to AdWords Product team. 
> You could reach out to the AdWords Product Team through the contact options 
> available on this page 
> .*
>
> Could you please take a look and let us know if you have any further 
> questions?
>
> Regards,
> Dhanya, AdWords API Team
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 02/13/19 05:33:54 timl...@mmlab.io  wrote:
>
> Hello, is there any progress on the task?
>
> понедельник, 4 февраля 2019 г., 7:58:33 UTC+3 пользователь 
> googleadsapi-forumadvisor написал:
>
> Hi,
>
> I can see that my colleague, Milind, has reached out to you privately 
> regarding your concern. You may continue your discussion on the private 
> thread for better communication.
>
> @demotestevent74 - If you are encountering issues with the AdWords API, 
> you could open your concern on a new thread for better tracking.
>
> Regards,
> Dannison
> AdWords API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 02/01/19 01:12:19 timl...@mmlab.io wrote:
>
> I use GoogleAds API to get CAMPAIGN_PERFORMANCE_REPORT, and the 
> information about periods in past differs from time to time. It differs 
> only in ImressionReach and AverageFrequence params: in some cases it is 
> null, in some not.
>
> For example: {'CampaignId': '128616739', 'ExternalCustomerId': 
> '6516505374', 'CampaignName': , 'CampaignGroupId': '3969059', 
> 'CampaignStatus': 'paused', 'ServingStatus': 'eligible', 'StartDate': 
> '2013-04-07', 'EndDate': ' --', 'AdvertisingChannelType': 'Display', 
> 'AdvertisingChannelSubType': ' --', 'Impressions': '42643', 'Clicks': '60', 
> 'Engagements': '0', 'VideoViews': '0', 'Conversions': '0.00', 'AverageCpc': 
> '18178167', 'AverageCpm': '25577234', 'Ctr': '0.14%', 'ImpressionReach': 
> '2311', 'AverageFrequency': '18.5', 'Cost': '109069', 'Month': 
> '2018-01-01'}, {'CampaignId': '128616739', 'ExternalCustomerId': 
> '6516505374', 'CampaignName': , 'CampaignGroupId': '3969059', 
> 'CampaignStatus': 'paused', 'ServingStatus': 'eligible', 'StartDate': 
> '2013-04-07', 'EndDate': ' --', 'AdvertisingChannelType': 'Display', 
> 'AdvertisingChannelSubType': ' --', 'Impressions': '42643', 'Clicks': '60', 
> 'Engagements': '0', 'VideoViews': '0', 'Conversions': '0.00', 'AverageCpc': 
> '18178167', 'AverageCpm': '25577234', 'Ctr': '0.14%', 'ImpressionReach': ' 
> --', 'AverageFrequency': '0.0', 'Cost': '109069', 'Month': '2018-01-01'}
>
> Looks like a bug to me. Is it?
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog:
> https://googleadsdeveloper.blogspot.com/
> 

Re: ReportDownloader HTTP ERROR 500

2019-02-13 Thread Graine de Zèle
I did a test at another host and it works. Maybe the PHP version ...

Le lundi 11 février 2019 21:58:16 UTC+1, googleadsapi-forumadvisor a écrit :
>
> Hello Graine,
>
> Thanks for reporting this issue. The same issue was reported by a few 
> other users as well. Our team is looking into the issue. I will update you 
> once I have more information on this issue.
>
> Regards,
> Sai Teja, AdWords API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>

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

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


RE: customer sync service changed criteria

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Chirag,

The AdGroupChangeData will include the IDs of the changedCriteria. In your
response the returned criteria IDs are for which the changes were made in
that specific ad group. If this does not address your concern, could you
please elaborate?

Thanks,
Bharani, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tc500gr50ko000llcsqy6kmjgd1i64o30c1g68qj6c1l%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: USER_PERMISSION_DENIED,User doesn't have permission to access customer,"errorCode": { "authorizationError": "USER_PERMISSION_DENIED"

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Everyone,

Thanks for the update, we are looking into the issue. We will responding on
this thread when we find more information.

Regards,
Sai Teja, Google Ads API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186t2h80o3ektu0006vgkoz6smj6d1p6so30c1g68qj4cpl%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: USER_PERMISSION_DENIED,User doesn't have permission to access customer,"errorCode": { "authorizationError": "USER_PERMISSION_DENIED"

2019-02-13 Thread Ethan Lyon
Has this been integrated into the BigQuery Transfer Service? I'm seeing the
same errors there.

On Wed, Feb 13, 2019 at 11:27 AM Jordi Puig 
wrote:

> You should check this:
>
>
> https://ads-developers.googleblog.com/2019/01/new-required-header-for-google-ads-api.html
>
> Regards.
>
> On Wednesday, February 13, 2019 at 5:22:58 PM UTC+1, Charles Astwood wrote:
>>
>> Me too. I am wondering if there is a fault Googles end as a few of us are
>> seeing this
>>
>> On Wednesday, 13 February 2019 11:47:25 UTC, Ananth Sakthivel wrote:
>>>
>>> since yesterday my code was working fine and it's fetching the
>>> AdsAccount Details through the Service of "GetCustomer()". but today
>>> onwards its stop working and throwing the Below error,
>>>
>>> *Google.Ads.GoogleAds.Lib.GoogleAdsException*
>>> *  HResult=0x80131500*
>>> *  Message=Status(StatusCode=PermissionDenied, Detail="The caller does
>>> not have permission")*
>>> *  Source=Google.Api.Gax.Grpc*
>>>
>>> I have already added the "LoginCustomerId" in my config file. but still,
>>> it's not sorted out.
>>>
>>> My TestManager CustomerID: 2349150893
>>> Developer token:__R0sxIaTEA-cd2bmu1kmA
>>> *please have a look on my code below, also I attached the screenshot of
>>> my errors.*
>>>
>>>  try
>>> {
>>> Client = new GoogleAdsClient();
>>> CustomerService =
>>> Client.GetService(Services.V0.CustomerService);
>>> GoogleAdsServiceClient googleAdsService =
>>> Client.GetService(Services.V0.GoogleAdsService);
>>> SearchGoogleAdsRequest request = new
>>> SearchGoogleAdsRequest()
>>> {
>>> Query = @"SELECT customer_client.client_customer
>>> FROM customer_client",
>>> CustomerId = Client.Config.LoginCustomerId
>>> };
>>> PagedEnumerable>> GoogleAdsRow> searchPagedResponse = googleAdsService.Search(request);
>>> object sync = new Object();
>>>
>>> Parallel.ForEach(searchPagedResponse, response =>
>>> {
>>>  lock (sync)
>>>  {
>>>  var ClientDetails =
>>> CustomerService.GetCustomer(response.CustomerClient.ClientCustomer);//Error
>>> at this line
>>>  if (!ClientDetails.Manager.Value)
>>>  {
>>>
>>>  }
>>>  }
>>>
>>> });
>>> }
>>>
>>> [image: 2019-02-13_17-12-10.png]
>>>
>>> --
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog:
> https://googleadsdeveloper.blogspot.com/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> You received this message because you are subscribed to the Google
> Groups "AdWords API and Google Ads API Forum" group.
> To post to this group, send email to adwords-api@googlegroups.com
> To unsubscribe from this group, send email to
> adwords-api+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/adwords-api?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "AdWords API and Google Ads API Forum" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to adwords-api+unsubscr...@googlegroups.com.
> Visit this group at https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/adwords-api/30e348db-7610-43e4-8d74-a3d83b65e11d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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

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


Re: USER_PERMISSION_DENIED,User doesn't have permission to access customer,"errorCode": { "authorizationError": "USER_PERMISSION_DENIED"

2019-02-13 Thread Jordi Puig
You should check this:

https://ads-developers.googleblog.com/2019/01/new-required-header-for-google-ads-api.html

Regards.

On Wednesday, February 13, 2019 at 5:22:58 PM UTC+1, Charles Astwood wrote:
>
> Me too. I am wondering if there is a fault Googles end as a few of us are 
> seeing this
>
> On Wednesday, 13 February 2019 11:47:25 UTC, Ananth Sakthivel wrote:
>>
>> since yesterday my code was working fine and it's fetching the AdsAccount 
>> Details through the Service of "GetCustomer()". but today onwards its stop 
>> working and throwing the Below error,
>>
>> *Google.Ads.GoogleAds.Lib.GoogleAdsException*
>> *  HResult=0x80131500*
>> *  Message=Status(StatusCode=PermissionDenied, Detail="The caller does 
>> not have permission")*
>> *  Source=Google.Api.Gax.Grpc*
>>
>> I have already added the "LoginCustomerId" in my config file. but still, 
>> it's not sorted out.
>>
>> My TestManager CustomerID: 2349150893
>> Developer token:__R0sxIaTEA-cd2bmu1kmA
>> *please have a look on my code below, also I attached the screenshot of 
>> my errors.*
>>
>>  try
>> {
>> Client = new GoogleAdsClient();
>> CustomerService = 
>> Client.GetService(Services.V0.CustomerService);   
>> GoogleAdsServiceClient googleAdsService = 
>> Client.GetService(Services.V0.GoogleAdsService);
>> SearchGoogleAdsRequest request = new 
>> SearchGoogleAdsRequest()
>> {
>> Query = @"SELECT customer_client.client_customer 
>> FROM customer_client",
>> CustomerId = Client.Config.LoginCustomerId
>> };
>> PagedEnumerable> GoogleAdsRow> searchPagedResponse = googleAdsService.Search(request);
>> object sync = new Object();
>>
>> Parallel.ForEach(searchPagedResponse, response =>
>> {
>>  lock (sync)
>>  {
>>  var ClientDetails = 
>> CustomerService.GetCustomer(response.CustomerClient.ClientCustomer);//Error 
>> at this line
>>  if (!ClientDetails.Manager.Value)
>>  {
>> 
>>  }
>>  }
>>
>> });
>> }
>>
>> [image: 2019-02-13_17-12-10.png]
>>
>>

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

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


API - Unable to set aggressive automated targeting and custom bid

2019-02-13 Thread Jérémie - SEPM
Hello everybody.

I use the API to automatically create ads on search and display network.
No problem with that.

But for my display campaigns, I want to enable
1) the aggressive automated targeting

2) the custom bid to "Keywords"
These both options could be find in the settings of an AdGroup of the UI.
But my searches for these options in the API failed.
I tried to set the CriterionTypeGroup::KEYWORD of TargetingSettingDetail 
but I got an exception :

*Caught exception: 
[SettingError.TARGETING_SETTING_CONTAINS_INVALID_CRITERION_TYPE_GROUP @ 
operations[0].operand.settings[0]; trigger:'KEYWORD'] *

Someone can help me ?

Thanks a lot.

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

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


Is there a way to push reviews on my business's website to google review of my business?

2019-02-13 Thread G.Logesh Jayavarsan
I want to push reviews that my customers gives me in our website to google 
review of my business. Is there any way for it.?

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

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


Re: USER_PERMISSION_DENIED,User doesn't have permission to access customer,"errorCode": { "authorizationError": "USER_PERMISSION_DENIED"

2019-02-13 Thread Charles Astwood
Me too. I am wondering if there is a fault Googles end as a few of us are 
seeing this

On Wednesday, 13 February 2019 11:47:25 UTC, Ananth Sakthivel wrote:
>
> since yesterday my code was working fine and it's fetching the AdsAccount 
> Details through the Service of "GetCustomer()". but today onwards its stop 
> working and throwing the Below error,
>
> *Google.Ads.GoogleAds.Lib.GoogleAdsException*
> *  HResult=0x80131500*
> *  Message=Status(StatusCode=PermissionDenied, Detail="The caller does not 
> have permission")*
> *  Source=Google.Api.Gax.Grpc*
>
> I have already added the "LoginCustomerId" in my config file. but still, 
> it's not sorted out.
>
> My TestManager CustomerID: 2349150893
> Developer token:__R0sxIaTEA-cd2bmu1kmA
> *please have a look on my code below, also I attached the screenshot of my 
> errors.*
>
>  try
> {
> Client = new GoogleAdsClient();
> CustomerService = 
> Client.GetService(Services.V0.CustomerService);   
> GoogleAdsServiceClient googleAdsService = 
> Client.GetService(Services.V0.GoogleAdsService);
> SearchGoogleAdsRequest request = new 
> SearchGoogleAdsRequest()
> {
> Query = @"SELECT customer_client.client_customer 
> FROM customer_client",
> CustomerId = Client.Config.LoginCustomerId
> };
> PagedEnumerable 
> searchPagedResponse = googleAdsService.Search(request);
> object sync = new Object();
>
> Parallel.ForEach(searchPagedResponse, response =>
> {
>  lock (sync)
>  {
>  var ClientDetails = 
> CustomerService.GetCustomer(response.CustomerClient.ClientCustomer);//Error 
> at this line
>  if (!ClientDetails.Manager.Value)
>  {
> 
>  }
>  }
>
> });
> }
>
> [image: 2019-02-13_17-12-10.png]
>
>

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

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


Keyword Performance Report - Drive template access

2019-02-13 Thread pg . pixart
Hi everyone,
I have an issue with the Keyword Performance Report, since this script 
requires a copy of a Google Drive sheet but the template is unavailable.

The sheet requires authorisation but this is taking more time than expected.

Is there someone that had the same issue/knows how to overcome this?

Thanks,
Piergiorgio

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

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


Re: USER_PERMISSION_DENIED,User doesn't have permission to access customer,"errorCode": { "authorizationError": "USER_PERMISSION_DENIED"

2019-02-13 Thread peter
Same here, worked fine this week but now I get the exact same error in the 
Google Ads Beta API. Using a similar ads.properties (with the old prefix 
settings) in the old Google Adwords API works fine.


Op woensdag 13 februari 2019 12:47:25 UTC+1 schreef Ananth Sakthivel:
>
> since yesterday my code was working fine and it's fetching the AdsAccount 
> Details through the Service of "GetCustomer()". but today onwards its stop 
> working and throwing the Below error,
>
> *Google.Ads.GoogleAds.Lib.GoogleAdsException*
> *  HResult=0x80131500*
> *  Message=Status(StatusCode=PermissionDenied, Detail="The caller does not 
> have permission")*
> *  Source=Google.Api.Gax.Grpc*
>
> I have already added the "LoginCustomerId" in my config file. but still, 
> it's not sorted out.
>
> My TestManager CustomerID: 2349150893
> Developer token:__R0sxIaTEA-cd2bmu1kmA
> *please have a look on my code below, also I attached the screenshot of my 
> errors.*
>
>  try
> {
> Client = new GoogleAdsClient();
> CustomerService = 
> Client.GetService(Services.V0.CustomerService);   
> GoogleAdsServiceClient googleAdsService = 
> Client.GetService(Services.V0.GoogleAdsService);
> SearchGoogleAdsRequest request = new 
> SearchGoogleAdsRequest()
> {
> Query = @"SELECT customer_client.client_customer 
> FROM customer_client",
> CustomerId = Client.Config.LoginCustomerId
> };
> PagedEnumerable 
> searchPagedResponse = googleAdsService.Search(request);
> object sync = new Object();
>
> Parallel.ForEach(searchPagedResponse, response =>
> {
>  lock (sync)
>  {
>  var ClientDetails = 
> CustomerService.GetCustomer(response.CustomerClient.ClientCustomer);//Error 
> at this line
>  if (!ClientDetails.Manager.Value)
>  {
> 
>  }
>  }
>
> });
> }
>
> [image: 2019-02-13_17-12-10.png]
>
>

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

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


Transfer all data of Google Ads to BigQuery

2019-02-13 Thread tanbnh

Hi,

I'm trying to transfer all data to BigQuery for reporting. I'm following 
this instruction at https://cloud.google.com/bigquery/docs/adwords-transfer



After follow the steps, I saw some job schedule running to collect each day 
data only.
[image: Screen Shot 2019-02-13 at 4.03.54 PM.png]

Is there anyway I can pull ALL the data of my google Ads campaign to 
BigQuery?

Thank you

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

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


RE: Campaign Performance Report data differs from time to time in params ImpressionReach and AverageFrequency

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi there,

My colleague and I had reached out to you privately regarding this question
as below:

*I was able to replicate the issue. For last month, I can see the values
for ImpressionReach
  
(3,536)

, AverageFrequency
  
(11.1).

But for last 3 month, I can see value as --. I ran the campaign performance
report for last 1 and 3 month. I can see the behavior in API too. Could you
please confirm, if you are seeing the same behavior in API and UI? As the
behavior is same in the API and UI, then this issue is not related to
AdWords API. You will need to post your questions to AdWords Product team.
You could reach out to the AdWords Product Team through the contact options
available on this page
.*

Could you please take a look and let us know if you have any further
questions?

Regards,
Dhanya, AdWords API Team
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/13/19 05:33:54 timlu...@mmlab.io wrote:

Hello, is there any progress on the task?

понедельник, 4 февраля 2019 г., 7:58:33 UTC+3 пользователь
googleadsapi-forumadvisor написал:

Hi,

I can see that my colleague, Milind, has reached out to you privately
regarding your concern. You may continue your discussion on the private
thread for better communication.

@demotestevent74 - If you are encountering issues with the AdWords API, you
could open your concern on a new thread for better tracking.

Regards,
Dannison
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Was your question answered? Please rate your experience with us by taking a
short survey.
If not -- reply to this email and tell us what else we can do to help.

Take Survey


Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
On 02/01/19 01:12:19 timl...@mmlab.io wrote:

I use GoogleAds API to get CAMPAIGN_PERFORMANCE_REPORT, and the information
about periods in past differs from time to time. It differs only in
ImressionReach and AverageFrequence params: in some cases it is null, in
some not.

For example: {'CampaignId': '128616739', 'ExternalCustomerId':
'6516505374', 'CampaignName': , 'CampaignGroupId': '3969059',
'CampaignStatus': 'paused', 'ServingStatus': 'eligible', 'StartDate':
'2013-04-07', 'EndDate': ' --', 'AdvertisingChannelType': 'Display',
'AdvertisingChannelSubType': ' --', 'Impressions': '42643', 'Clicks': '60',
'Engagements': '0', 'VideoViews': '0', 'Conversions': '0.00', 'AverageCpc':
'18178167', 'AverageCpm': '25577234', 'Ctr': '0.14%', 'ImpressionReach':
'2311', 'AverageFrequency': '18.5', 'Cost': '109069', 'Month':
'2018-01-01'}, {'CampaignId': '128616739', 'ExternalCustomerId':
'6516505374', 'CampaignName': , 'CampaignGroupId': '3969059',
'CampaignStatus': 'paused', 'ServingStatus': 'eligible', 'StartDate':
'2013-04-07', 'EndDate': ' --', 'AdvertisingChannelType': 'Display',
'AdvertisingChannelSubType': ' --', 'Impressions': '42643', 'Clicks': '60',
'Engagements': '0', 'VideoViews': '0', 'Conversions': '0.00', 'AverageCpc':
'18178167', 'AverageCpm': '25577234', 'Ctr': '0.14%', 'ImpressionReach': '
--', 'AverageFrequency': '0.0', 'Cost': '109069', 'Month': '2018-01-01'}

Looks like a bug to me. Is it?

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

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

Re: USER_PERMISSION_DENIED,User doesn't have permission to access customer,"errorCode": { "authorizationError": "USER_PERMISSION_DENIED"

2019-02-13 Thread Inspired UM
I have same issue just with Python lib.  Making request to GoogleAdsService

On Wednesday, 13 February 2019 13:47:25 UTC+2, Ananth Sakthivel wrote:
>
> since yesterday my code was working fine and it's fetching the AdsAccount 
> Details through the Service of "GetCustomer()". but today onwards its stop 
> working and throwing the Below error,
>
> *Google.Ads.GoogleAds.Lib.GoogleAdsException*
> *  HResult=0x80131500*
> *  Message=Status(StatusCode=PermissionDenied, Detail="The caller does not 
> have permission")*
> *  Source=Google.Api.Gax.Grpc*
>
> I have already added the "LoginCustomerId" in my config file. but still, 
> it's not sorted out.
>
> My TestManager CustomerID: 2349150893
> Developer token:__R0sxIaTEA-cd2bmu1kmA
> *please have a look on my code below, also I attached the screenshot of my 
> errors.*
>
>  try
> {
> Client = new GoogleAdsClient();
> CustomerService = 
> Client.GetService(Services.V0.CustomerService);   
> GoogleAdsServiceClient googleAdsService = 
> Client.GetService(Services.V0.GoogleAdsService);
> SearchGoogleAdsRequest request = new 
> SearchGoogleAdsRequest()
> {
> Query = @"SELECT customer_client.client_customer 
> FROM customer_client",
> CustomerId = Client.Config.LoginCustomerId
> };
> PagedEnumerable 
> searchPagedResponse = googleAdsService.Search(request);
> object sync = new Object();
>
> Parallel.ForEach(searchPagedResponse, response =>
> {
>  lock (sync)
>  {
>  var ClientDetails = 
> CustomerService.GetCustomer(response.CustomerClient.ClientCustomer);//Error 
> at this line
>  if (!ClientDetails.Manager.Value)
>  {
> 
>  }
>  }
>
> });
> }
>
> [image: 2019-02-13_17-12-10.png]
>
>

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

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


RE: Getting Error: connect ETIMEDOUT for adgroup performance report

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

I just received some timestamps on a private message (thanks for that
info!) and I've passed them on to the reporting engineers who are
investigating this issue. I'll provide updates as soon as I hear back from
them.

Cheers,
Josh, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/12/19 18:04:33 googleadsapi-forumadvi...@google.com wrote:

Hi,

Thanks for letting me know which client libraries you are using. Could
either of you share the following from a request that timed out *only with
me* by clicking *Reply privately to author* on this message?

   - The client customer ID in the request
   - The report definition or AWQL statement of the request
   - The *requestId* in the response, if available. If not, please provide
   the date and time (including timezone) of the request.

Once I have an example or two, I can look into the specific request to
determine why it failed.

Cheers,
Josh, AdWords API Team

=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/11/19 23:39:21 chirag.erepo...@gmail.com wrote:

Hello Josh,

I am using googleads-php-lib.

Also, as a workaround in the meantime, you can increase the timeout in your
requests as described in the reporting section of the library's README
.
->Yes  I have done the same to get reports, but that too are timeout. And
to more specific it is taking more than 2 mins to get single campaign
performance report for single day without any segments usage .

Thanks,

On Tuesday, 12 February 2019 09:53:16 UTC+5:30, Jofin Kuriakose wrote:

Hi Josh,

I am using NodeJS (node-adwords npm package).

When can I expect this to be resolved?

On Monday, February 11, 2019 at 11:31:58 PM UTC+5:30, Jofin Kuriakose wrote:

I am getting following error from today afternoon for Adgroup Performance
Report.

{ Error: connect ETIMEDOUT 74.125.200.100:443
at Object._errnoException (util.js:1041:11)
at _exceptionWithHostPort (util.js:1064:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1153:14)
  code: 'ETIMEDOUT',
  errno: 'ETIMEDOUT',
  syscall: 'connect',
  address: '74.125.200.100',
  port: 443 }

I am using v201806.

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/186tc500govogi000laqisy6cmjgd1k6go30c1g68qjcc1o%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Bid Adjustments

2019-02-13 Thread cv
Hello,

What is best practise to retrieve Demographics Bid Adjustments (GENDER, 
AGE_RANEG, LOCATION, INCOME_RANGE)

I am seeing that AdgroupCriteriaService, CamapignCriteriaService, 
AdgroupBidModifierService, CampaignBidModifierService can be use.

But I need all Demographics adjustments made under the account at adgroup 
level.

https://developers.google.com/adwords/api/docs/guides/bidding



Thanks,

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

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


want migrate php client library from V201802 to V201902.

2019-02-13 Thread oeaftest

Hi I am getting this message

*Fatal error*: Uncaught exception 
'Google\AdsApi\AdWords\v201802\cm\ApiException' with message 'Details: 
[fieldPath: ; trigger: You are accessing an AdWords API version v201802 
that has been discontinued. Calls to this version may fail. Please visit 
the AdWords API blog for information on migration to the new AdWords API 
version.; errorString: RequestError.UNSUPPORTED_VERSION]'

I am using PHP client library V201802. Please can someone help me how i can 
upgrade my code to V201902.

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

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


USER_PERMISSION_DENIED,User doesn't have permission to access customer,"errorCode": { "authorizationError": "USER_PERMISSION_DENIED"

2019-02-13 Thread Ananth Sakthivel
since yesterday my code was working fine and it's fetching the AdsAccount 
Details through the Service of "GetCustomer()". but today onwards its stop 
working and throwing the Below error,

*Google.Ads.GoogleAds.Lib.GoogleAdsException*
*  HResult=0x80131500*
*  Message=Status(StatusCode=PermissionDenied, Detail="The caller does not 
have permission")*
*  Source=Google.Api.Gax.Grpc*

I have already added the "LoginCustomerId" in my config file. but still, 
it's not sorted out.

My TestManager CustomerID: 2349150893
Developer token:__R0sxIaTEA-cd2bmu1kmA
*please have a look on my code below, also I attached the screenshot of my 
errors.*

 try
{
Client = new GoogleAdsClient();
CustomerService = 
Client.GetService(Services.V0.CustomerService);   
GoogleAdsServiceClient googleAdsService = 
Client.GetService(Services.V0.GoogleAdsService);
SearchGoogleAdsRequest request = new 
SearchGoogleAdsRequest()
{
Query = @"SELECT customer_client.client_customer 
FROM customer_client",
CustomerId = Client.Config.LoginCustomerId
};
PagedEnumerable 
searchPagedResponse = googleAdsService.Search(request);
object sync = new Object();
   
Parallel.ForEach(searchPagedResponse, response =>
{
 lock (sync)
 {
 var ClientDetails = 
CustomerService.GetCustomer(response.CustomerClient.ClientCustomer);//Error 
at this line
 if (!ClientDetails.Manager.Value)
 {

 }
 }

});
}

[image: 2019-02-13_17-12-10.png]

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

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


Re: Fetching the list of accessible account from the Google Ads API without the gRPC

2019-02-13 Thread Noémi Molnár
Hi Luis,

I do not find the guide 
 
clear 
according to this request. Based on this guide 
 I 
would assume one of the following calls should work:
https://googleads.googleapis.com/v0/accessibleCustomers:list 
or https://googleads.googleapis.com/v0/customers:list
These apparently do not work. Could you please point out where did I make 
the mistake and what would be the right structure of the call? 

Regards,
Noemi

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

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


[PHP] Google Ads - How to link an existing Google Adwords (or Ads) Account to my Google Ads MCC ?

2019-02-13 Thread ludovic . web2roi
Hi,

I would like to link an existing Google Adwords (or Ads) Account to my 
Google Ads MCC with PHP, but i can't find any code example.
What can i do please ? Someone have already done that ?

Cheers.

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

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


Special characters in the WHERE clause in the AdWords API

2019-02-13 Thread Noémi Molnár
Hi,

The QueryError.INVALID_WHERE_CLAUSE is returned when there are special 
characters, like '#', '-', '.' in the WHERE clause of the call to the 
AdWords API, even is we encode or escape these characters. Is it the 
excepted behaviour of the API, is there any way to use these characters in 
the WHERE clause?

Kind regards,
Noemi Molnar

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

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


RE: Fetching the list of accessible account from the Google Ads API without the gRPC

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Noemi,

You may refer to this guide
  
for

sample of API call structure in Google Ads API.

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

Thanks and regards,
Luis
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/12/19 22:20:04 no...@swydo.com wrote:

Hi,

 I would like to use CustomerService

.ListAccessibleCustomers
  
to

fetch the resource names of all the accessible accounts by creating the
body of request as a JSON object, and sending it to the server using HTTP
1.1 . I could not find the right structure for this call. What would be the
right structure for it
Thank you in advance!

Kind regards,
Noemi Molnar

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12hgcog010190hi000dcsk8z64mj8dpj74o30c1g68qj8e1j%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Retrieve Audience list size

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Pete,

You may use the AdwordsUserListService.get()
  
method

to get the size of your user list. You may use the size
  
field

for user list size on display network or the sizeForSearch
  
field

for user list size on search network.

Thanks and regards,
Luis
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/13/19 05:01:34 p...@twyzle.com wrote:

We'd like to retrieve the number of users in an audience list. Is this
possible via the API?

Thanks

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/18i41m008n7fci0066jn52y6gmjadhj74o30c1g68qj8d1i%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


User doesn't have permission to access customer,USER_PERMISSION_DENIED

2019-02-13 Thread Ananth Sakthivel

since yesterday my code was working fine and it's fetching the AdsAccount 
Details through the Service of "GetCustomer()". but today onwards its stop 
working and throwing the Below error,

*Google.Ads.GoogleAds.Lib.GoogleAdsException*
*  HResult=0x80131500*
*  Message=Status(StatusCode=PermissionDenied, Detail="The caller does not 
have permission")*
*  Source=Google.Api.Gax.Grpc*

I have already added the "LoginCustomerId" in my config file. but still, 
it's not sorted out.

please have a look on my code,

 try
{
Client = new GoogleAdsClient();
CustomerService = 
Client.GetService(Services.V0.CustomerService);   
GoogleAdsServiceClient googleAdsService = 
Client.GetService(Services.V0.GoogleAdsService);
SearchGoogleAdsRequest request = new 
SearchGoogleAdsRequest()
{
Query = @"SELECT customer_client.client_customer 
FROM customer_client",
CustomerId = Client.Config.LoginCustomerId
};
PagedEnumerable 
searchPagedResponse = googleAdsService.Search(request);
object sync = new Object();
   
Parallel.ForEach(searchPagedResponse, response =>
{
 lock (sync)
 {
 var ClientDetails = 
CustomerService.GetCustomer(response.CustomerClient.ClientCustomer);
 if (!ClientDetails.Manager.Value)
 {

 }
 }

});
}

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

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


RE: Negative Keyword Conflict Script

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Lottie,

It appears that you are using the Google Ads Scripts instead of the AdWords
API. That being said, I'm afraid that this is already out of scope for us.
You may reach out to the Google Ads Scripts team via this link
 for further
assistance.

Thanks and regards,
Peter
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/12/19 23:04:06 lottie.namaka...@icrossing.co.uk wrote:

Hi,

I am using this
  
negative

keyword conflict script but get the below error when we try to run it;

Invalid reporting query: UNSUPPORTED_VERSION:
RequestError.UNSUPPORTED_VERSION.

The page was recently updated so I would have thought the apiVersion
command would be up to date. However I believe it is an issue the
apiVersion: 'v201802' being incorrect, but I am not sure what version you
should have instead.

Thanks

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ujqug1plv000obfl7e00751qt0z74mj4e1g74o30c1g68qj2d1m%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Campaign Performance Report data differs from time to time in params ImpressionReach and AverageFrequency

2019-02-13 Thread timlukin
Hello, is there any progress on the task?

понедельник, 4 февраля 2019 г., 7:58:33 UTC+3 пользователь 
googleadsapi-forumadvisor написал:
>
> Hi,
>
> I can see that my colleague, Milind, has reached out to you privately 
> regarding your concern. You may continue your discussion on the private 
> thread for better communication.
>
> @demotestevent74 - If you are encountering issues with the AdWords API, 
> you could open your concern on a new thread for better tracking.
>
> Regards,
> Dannison
> AdWords API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 02/01/19 01:12:19 timl...@mmlab.io  wrote:
>
> I use GoogleAds API to get CAMPAIGN_PERFORMANCE_REPORT, and the 
> information about periods in past differs from time to time. It differs 
> only in ImressionReach and AverageFrequence params: in some cases it is 
> null, in some not.
>
> For example: {'CampaignId': '128616739', 'ExternalCustomerId': 
> '6516505374', 'CampaignName': , 'CampaignGroupId': '3969059', 
> 'CampaignStatus': 'paused', 'ServingStatus': 'eligible', 'StartDate': 
> '2013-04-07', 'EndDate': ' --', 'AdvertisingChannelType': 'Display', 
> 'AdvertisingChannelSubType': ' --', 'Impressions': '42643', 'Clicks': '60', 
> 'Engagements': '0', 'VideoViews': '0', 'Conversions': '0.00', 'AverageCpc': 
> '18178167', 'AverageCpm': '25577234', 'Ctr': '0.14%', 'ImpressionReach': 
> '2311', 'AverageFrequency': '18.5', 'Cost': '109069', 'Month': 
> '2018-01-01'}, {'CampaignId': '128616739', 'ExternalCustomerId': 
> '6516505374', 'CampaignName': , 'CampaignGroupId': '3969059', 
> 'CampaignStatus': 'paused', 'ServingStatus': 'eligible', 'StartDate': 
> '2013-04-07', 'EndDate': ' --', 'AdvertisingChannelType': 'Display', 
> 'AdvertisingChannelSubType': ' --', 'Impressions': '42643', 'Clicks': '60', 
> 'Engagements': '0', 'VideoViews': '0', 'Conversions': '0.00', 'AverageCpc': 
> '18178167', 'AverageCpm': '25577234', 'Ctr': '0.14%', 'ImpressionReach': ' 
> --', 'AverageFrequency': '0.0', 'Cost': '109069', 'Month': '2018-01-01'}
>
> Looks like a bug to me. Is it?
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog:
> https://googleadsdeveloper.blogspot.com/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>  
> You received this message because you are subscribed to the Google
> Groups "AdWords API and Google Ads API Forum" group.
> To post to this group, send email to adwords-api@googlegroups.com
> To unsubscribe from this group, send email to
> adwords-api+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/adwords-api?hl=en
> --- 
> You received this message because you are subscribed to the Google Groups 
> "AdWords API and Google Ads API Forum" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to adwords-api+unsubscr...@googlegroups.com.
> Visit this group at https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/adwords-api/3a7deadd-72db-4be5-995d-b596be292d85%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

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

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

Fetching the list of accessible account from the Google Ads API without the gRPC

2019-02-13 Thread Noémi Molnár
Hi,

 I would like to use CustomerService 

.ListAccessibleCustomers 

 to 
fetch the resource names of all the accessible accounts by creating the 
body of request as a JSON object, and sending it to the server using HTTP 
1.1 . I could not find the right structure for this call. What would be the 
right structure for it
Thank you in advance!

Kind regards,
Noemi Molnar

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

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


Retrieve Audience list size

2019-02-13 Thread pete
We'd like to retrieve the number of users in an audience list. Is this 
possible via the API?

Thanks

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

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


Negative Keyword Conflict Script

2019-02-13 Thread Lottie . Namakando
Hi,

I am using this 

 negative 
keyword conflict script but get the below error when we try to run it;

Invalid reporting query: UNSUPPORTED_VERSION: 
RequestError.UNSUPPORTED_VERSION. 

The page was recently updated so I would have thought the apiVersion 
command would be up to date. However I believe it is an issue the 
apiVersion: 'v201802' being incorrect, but I am not sure what version you 
should have instead.

Thanks

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

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


RE: Design Of TargetingIdeaService

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

Are you looking for the guides of TargetingIdeaService? If so, you may
refer here

.

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

Thanks and regards,
Luis
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/12/19 13:32:37 mru...@shoutnhike.com wrote:

Hello,

I have integrate TargetingIdeaService

of google adwords API .

I am searching for design template for above service.

Kindly provide link if anyone knows.

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/63ujg4219000gn437s00011qqgy6omjcd9g70o30c1g68qj4d9n%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Unable to add user interest to a display type campaign's adgroup

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

I'm glad it works on your end. The guide
  
only

mentioned that the id
  
(criterion

ID) is required for SET or REMOVED operations. However in your case, since
you are only targeting the UserInterest for the first time, the ADD
operator should be used and the userInterestId is the required field.

Regards,
Luis
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/13/19 16:23:01 msi.saur...@gmail.com wrote:

Yes thanks it worked, but its says it only supports SET, REMOVE operations
https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupCriterionService.CriterionUserInterest


On Wednesday, February 13, 2019 at 1:25:21 PM UTC+6,
googleadsapi-forumadvisor wrote:

Hi,

Could you try to use the ADD operator instead and only set the
userInterestId
  
to  
92911.

Let me know if it works.

Thanks and regards,
Luis
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Was your question answered? Please rate your experience with us by taking a
short survey.
If not -- reply to this email and tell us what else we can do to help.

Take Survey


Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
On 02/13/19 14:08:23 msi.s...@gmail.com wrote:

The other code was wrong
if i set as userInteresetId says id required, if i set as id says invalid id


$adGroupCriterionService = $this->adWordServices->get($this->session,  
AdGroupCriterionService::class);

$operations  = [];

$userInterest = new CriterionUserInterest();
$userInterest->setUserInterestId(92911);
$genderBiddableAdGroupCriterion = new BiddableAdGroupCriterion();
$genderBiddableAdGroupCriterion->setAdGroupId($adGroup->getId());
$genderBiddableAdGroupCriterion->setCriterion($userInterest);

$adgroupOperation = new AdGroupCriterionOperation();
$adgroupOperation->setOperator(Operator::SET);
$adgroupOperation->setOperand($genderBiddableAdGroupCriterion);
$operations[] = $adgroupOperation;

$result = false;
if (!empty($operations)) {
$result = $adGroupCriterionService->mutate($operations);
}

return $result;


On Wednesday, February 13, 2019 at 11:52:37 AM UTC+6, MSI Saurovh wrote:

Hi,
https://developers.google.com/adwords/api/docs/appendix/codes-formats
here you will find all affinity user interest, and

92911 : /Technology/Social Media Enthusiasts is valid affinity

$adGroupCriterionService = $this->adWordServices->get($this->session,  
AdGroupCriterionService::class);

$operations  = [];

$userInterest = new CriterionUserInterest(92911);
$userInterest->setUserInterestId($userInterest->getId());
$genderBiddableAdGroupCriterion = new BiddableAdGroupCriterion();
$genderBiddableAdGroupCriterion->setCriterion($userInterest);

$adgroupOperation = new AdGroupCriterionOperation();
$adgroupOperation->setOperator(Operator::SET);
$adgroupOperation->setOperand($genderBiddableAdGroupCriterion);
$operations[] = $adgroupOperation;

$result = false;
if (!empty($operations)) {
$result = $adGroupCriterionService->mutate($operations);
}

return $result;

but this shows invalid_id error, please help me out here

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

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

Re: Unable to add user interest to a display type campaign's adgroup

2019-02-13 Thread MSI Saurovh
Yes thanks it worked, but its says it only supports SET, REMOVE operations
https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupCriterionService.CriterionUserInterest


On Wednesday, February 13, 2019 at 1:25:21 PM UTC+6, 
googleadsapi-forumadvisor wrote:
>
> Hi,
>
> Could you try to use the ADD operator instead and only set the 
> userInterestId 
> 
>  to 92911. 
> Let me know if it works.
>
> Thanks and regards,
> Luis
> AdWords API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 02/13/19 14:08:23 msi.s...@gmail.com  wrote:
>
> The other code was wrong
> if i set as userInteresetId says id required, if i set as id says invalid id
>
>
> $adGroupCriterionService = $this->adWordServices->get($this->session, 
> AdGroupCriterionService::class);
> $operations  = [];
>
> $userInterest = new CriterionUserInterest();
> $userInterest->setUserInterestId(92911);
> $genderBiddableAdGroupCriterion = new BiddableAdGroupCriterion();
> $genderBiddableAdGroupCriterion->setAdGroupId($adGroup->getId());
> $genderBiddableAdGroupCriterion->setCriterion($userInterest);
>
> $adgroupOperation = new AdGroupCriterionOperation();
> $adgroupOperation->setOperator(Operator::SET);
> $adgroupOperation->setOperand($genderBiddableAdGroupCriterion);
> $operations[] = $adgroupOperation;
>
> $result = false;
> if (!empty($operations)) {
> $result = $adGroupCriterionService->mutate($operations);
> }
>
> return $result;
>
>
> On Wednesday, February 13, 2019 at 11:52:37 AM UTC+6, MSI Saurovh wrote:
>
> Hi,
> https://developers.google.com/adwords/api/docs/appendix/codes-formats
> here you will find all affinity user interest, and 
>
> 92911 : /Technology/Social Media Enthusiasts is valid affinity
>
> $adGroupCriterionService = $this->adWordServices->get($this->session, 
> AdGroupCriterionService::class);
> $operations  = [];
>
> $userInterest = new CriterionUserInterest(92911);
> $userInterest->setUserInterestId($userInterest->getId());
> $genderBiddableAdGroupCriterion = new BiddableAdGroupCriterion();
> $genderBiddableAdGroupCriterion->setCriterion($userInterest);
>
> $adgroupOperation = new AdGroupCriterionOperation();
> $adgroupOperation->setOperator(Operator::SET);
> $adgroupOperation->setOperand($genderBiddableAdGroupCriterion);
> $operations[] = $adgroupOperation;
>
> $result = false;
> if (!empty($operations)) {
> $result = $adGroupCriterionService->mutate($operations);
> }
>
> return $result;
>
> but this shows invalid_id error, please help me out here
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog:
> https://googleadsdeveloper.blogspot.com/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>  
> You received this message because you are subscribed to the Google
> Groups "AdWords API and Google Ads API Forum" group.
> To post to this group, send email to adwords-api@googlegroups.com
> To unsubscribe from this group, send email to
> adwords-api+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/adwords-api?hl=en
> --- 
> You received this message because you are subscribed to the Google Groups 
> "AdWords API and Google Ads API Forum" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to adwords-api+unsubscr...@googlegroups.com.
> Visit this group at https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/adwords-api/564366b6-57d6-4a83-a074-58e720eeb7a9%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, 

RE: Get Campaign level Audience using Adwords API

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi,

You can use the CampaignCriterionService.get()
  
to

retrieve your campaign level CriterionUserList
.
Let me know if this helps.

Thanks and regards,
Peter
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/12/19 21:27:06 sparsht.proj...@gmail.com wrote:

[image: Screenshot from 2019-02-12 18-53-54.png]

Where can I get campaign level audience.

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/180l1go107ts960007mjf2y74mj0d9l60o30c1g68qj4c1g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: How do you get "search query" data in BigQuery from Google Analytics

2019-02-13 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hi Elizabeth,

It appears that your concern is more related to the Google Ads Product as
the AdwWords API currently does not support data from BigQuery. You may
reach out to the product experts via the Google Ads Community Forum
 for
further assistance.

Thanks and regards,
Peter
AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

On 02/12/19 13:22:39 clark.1...@googlemail.com wrote:

Not sure if this is the right forum to be posting this in so I'm posting in
Google Analytics and here. We are trying to analyze "search query" and
"keywords". Currently we have Google Ads (previously Adwords) and Google
Analytics 360 setup. We also currently send our raw google analytics data
to BigQuery.

In the UI, we can see the "search query" performance report at the
individual user level. However, we are unable to find this data in our
BigQuery export. I've searched through all of the schema documentation for
google analytics in BigQuery and I'm unable to find the "search query"
field. Is there a way to get this information? I thought that perhaps we
could pull in our Adwords data into BigQuery and join on gclid. However,
the search query performance report is only at the aggregrate level. If we
pulled in the click performance report we would have gclid but that report
does not seem to have the search query. Any recommendations for how to get
this information?

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

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

.
For more options, visit https://groups.google.com/d/optout.

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

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

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/00d12il5e00187im440075folox6kmjgc1o6co30c1g68qj6chh%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Get Campaign level Audience using Adwords API

2019-02-13 Thread sparsh turkane


[image: Screenshot from 2019-02-12 18-53-54.png]

Where can I get campaign level audience.

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

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


Design Of TargetingIdeaService

2019-02-13 Thread MK
Hello,

I have integrate TargetingIdeaService 

 
of google adwords API .

I am searching for design template for above service.

Kindly provide link if anyone knows.

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

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


How do you get "search query" data in BigQuery from Google Analytics

2019-02-13 Thread 'Elizabeth Clark' via AdWords API and Google Ads API Forum
Not sure if this is the right forum to be posting this in so I'm posting in 
Google Analytics and here. We are trying to analyze "search query" and 
"keywords". Currently we have Google Ads (previously Adwords) and Google 
Analytics 360 setup. We also currently send our raw google analytics data 
to BigQuery. 

In the UI, we can see the "search query" performance report at the 
individual user level. However, we are unable to find this data in our 
BigQuery export. I've searched through all of the schema documentation for 
google analytics in BigQuery and I'm unable to find the "search query" 
field. Is there a way to get this information? I thought that perhaps we 
could pull in our Adwords data into BigQuery and join on gclid. However, 
the search query performance report is only at the aggregrate level. If we 
pulled in the click performance report we would have gclid but that report 
does not seem to have the search query. Any recommendations for how to get 
this information? 

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

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


AdWords API and Google Ads API Forum

2019-02-13 Thread sasi tamil
The *Google Ads* Application Programming Interface (*API*) is designed for 
developers representing large, tech-savvy advertisers and third parties. 
This includes agencies, search engine marketers (SEMs), and other online 
*marketing*professionals who manage multiple client accounts or large 
campaigns.

https://www.besanttechnologies.com/training-courses/software-testing-training/selenium-training-institute-in-chennai

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

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