Re: How to get google ads account credit or balance?

2020-01-21 Thread Akav Zhen
Well,I might consider changing some config then.
Thank you for your help.


On Wednesday, January 22, 2020 at 4:03:49 AM UTC+8, adsapiforumadvisor 
wrote:
>
> Hi Akav,
>
> In the case that your Automatic Budget account is set to unlimited making 
> the subtraction impossible, then unfortunately it is not possible to obtain 
> the remaining credit, as remaining credit is not directly accessible by 
> API. Please let me know if you have further questions.
>
> Thank you,
> Bryan, Google Ads API Team
>
>
> ref:_00D1U1174p._5001USwdAo:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1382335e-7938-425e-b17e-d5179425f041%40googlegroups.com.


KEYWORDLESS_QUERY_REPORT returns no data

2020-01-21 Thread Data DataSem
I was trying to pull information from the KEYWORDLESS_QUERY_REPORT, I was 
able to pass the function, however the date returned is blank:

def main(client):
  # Initialize appropriate service.
  report_downloader = client.GetReportDownloader(version='v201809')

  # Create report query.
  report_query = (adwords.ReportQueryBuilder()
  .Select('CampaignId',
  'CampaignName','AdGroupId', 'AdGroupName', 'AdGroupStatus'
, 'Query','QueryTargetingStatus', 'Clicks'
  )
  .From('KEYWORDLESS_QUERY_REPORT')
  .During(start_date='20191001', end_date='20200121')
  .Build())

  # You can provide a file object to write the output to. For this
  # demonstration we use sys.stdout to write the report to the screen.
  report_downloader.DownloadReportWithAwql(
  report_query, 'CSV', output, skip_report_header=True,
  skip_column_header=False, skip_report_summary=True)
  output.seek(0)
  df = pd.read_csv(output)
  df.sort_values(by=['Campaign'], ascending=True, inplace=True)
  df = df.to_csv('Seach Terms Report.csv', index=False)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7273227f-bee1-456b-9dc4-701626ca02fe%40googlegroups.com.


Re: Different result from adwords api and google ads api for geo performance

2020-01-21 Thread Rosdyana Kusuma
Dear Sai Teja, 

Any update regarding this feature request ?

thank you,
have a good day.

On Monday, October 28, 2019 at 11:56:17 PM UTC+8, adsapiforumadvisor wrote:
>
> Hello Kristian,
>
> Thanks for letting us know. A feature request is already in place for 
> this. I will update you on this thread once I have more information.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> ref:_00D1U1174p._5001UHGGZ5:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/815aa5dc-f0c0-4ba5-af35-0fc941f704f5%40googlegroups.com.


use AGE_RANGE_PERFORMANCE_REPORT to get Campaign level data

2020-01-21 Thread Pradeep Datla
Hi,

I am using AGE_RANGE_PERFORMANCE_REPORT to get age performance data. But i 
am getting it categorized by Adgroups. How do i get campaign- level data 
through api. I am using c# library.

Thank You,
Pradeep Datla.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/28fc5971-33e4-4572-8be6-6039a6405476%40googlegroups.com.


Re: household income report in new ads api

2020-01-21 Thread James Nixon
Will you confirm that this feature does in fact NOT EXIST? I want to make 
sure i am not the one in error. 

Being able to report on Household income as part of demographic data as 
presented in the "Adwords UI" through the "Google ADS UI"


Thanks,


On Tuesday, January 21, 2020 at 5:25:08 PM UTC-5, adsapiforumadvisor wrote:
>
> Hello James,
>
> I am Nikisha from Google Ads API Team. Please allow me to support your 
> concerns in the absence of my colleague Bharani.
>
> We currently do not have any update on this feature request or any 
> timeline to share when this feature will be available. Please keep an eye 
> on our blog post  for future 
> updates related to this. Let us know if you have any additional concerns.
>
> Regards,
> Nikisha Patel, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UCZUjS:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/54863974-e757-4790-a53f-3470d049ff65%40googlegroups.com.


AdWordUser object

2020-01-21 Thread API_DCH
Hi, 

I am trying to create an azure function to retrieve data from Google Ad's 
account. The function fail when it try to create the AdWordsUser object, it 
is looking for the appconfig file.
I would like to override the function by passing a prebuilt config file or 
headers. I tried both ways

AdWordsUser usr = new AdWordsUser(appConfig);
AdWordsUser adwordsUser = new AdWordsUser(headers);

it errors out with following message

System.Private.CoreLib: Exception while executing function: 
GenerateGoogleAdsRpt. Google.Ads.Common: Could not load type 
'System.Web.Hosting.HostingEnvironment' from assembly 'System.Web, 
Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.


It is failing on the following function call, it looks for the sectionname 
= "AdWordsApi"

protected void LoadFromAppConfigSection(string sectionName)
{
ReadSettings(ReadAppConfigSection(sectionName));
}

Have anyone found the solution already or found an alternate solution, 
please let me know. I appreciate your help.


Thanks
Sam

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/de1df43f-a5ed-414d-b579-48f3490553a1%40googlegroups.com.


Error when trying to get refresh token to access google ads.

2020-01-21 Thread Rene Vallecillo
I've been trying to get a refresh token for a few hours. After reading the 
different supported clients I came up with this url:

https://accounts.google.com/o/oauth2/authresponse_type=code_id=*.apps.googleusercontent.com_uri=urn:ietf:wg:oauth:2.0:oob=https://www.googleapis.com/auth/adwords_type=offline

This is after reading: 
https://github.com/googleads/googleads-perl-lib/wiki/API-access-using-own-credentials-(installed-application-flow)#step-2---setting-up-the-client-library

But I keep getting a 404 error. I'm already logged in on my google ads 
account and I parte the said url but it just gives me a 404 screen.

Bear in mind that I'm using Go and it does not have an official client yet.

Any help would be great.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c0343b65-2714-48e4-9e4f-b548837a4d75%40googlegroups.com.


Re: household income report in new ads api

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hello James,

I am Nikisha from Google Ads API Team. Please allow me to support your concerns 
in the absence of my colleague Bharani.

We currently do not have any update on this feature request or any timeline to 
share when this feature will be available. Please keep an eye on our blog post 
for future updates related to this. Let us know if you have any additional 
concerns.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UCZUjS:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/tSDwY0Q4HA9700FyB86Zs3QhKf-TPytoOFgg%40sfdc.net.


RE: Universal App Campaign can not create ad images and html5

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hello Esteban,

Thank you for sharing the details. We are looking into this and will get back 
to you shortly.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UOF7NS:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/rTaAF0Q4H9J200IzEGoIDYTP-pqP43oJd-Rw%40sfdc.net.


Re: How to fetch Household Income/Demographic Data through Adwords API?

2020-01-21 Thread James Nixon
this is about the Google Ads API, not the Adwords API.

Can you provide similar guidance for the Ads API? I was told to switch to
the Ads API by someone on the support threads to retrieve household income
data.

On Tue, Jan 21, 2020 at 4:40 PM Google Ads API Forum Advisor Prod <
adsapiforumadvi...@gmail.com> wrote:

> Hi James,
>
> Using AdWords API, you can look at the field name's Display name to see
> what the field should be name in the UI. For example, Criteria
> 
> for the Age Range Performance Report will show as Age range in the UI. This
> guide 
> shows what API report maps to what in the UI.
>
> You can use this guide
>  to
> see what API reports from AdWords API map to which reports in Google Ads
> API .
> While there is no Household income report currently, you can use the
> parental_status_view, age_range_view and gender_view respectively.
>
> Cheers,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5001UOEjvh:ref
>


-- 


*This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
If you have received this email in error please notify the system manager.
This message contains confidential information and is intended only for the
individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. If you are not the intended recipient
you are notified that disclosing, copying, distributing or taking any
action in reliance on the contents of this information is strictly
prohibited.*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CAOGAksGWJR4SWL4yk96RBizqVmmj9E%3D2de6QdWEH1eqo8%2ByiuQ%40mail.gmail.com.


Re: household income report in new ads api

2020-01-21 Thread James Nixon
any update on this? 

On Wednesday, August 14, 2019 at 3:11:02 PM UTC-4, adsapiforumadvisor wrote:
>
> Hi Chirag, 
>
> I'm afraid, the metrics data is not yet supported for the Income criteria. 
> I have raised a feature request to the team regarding this. Please keep an 
> eye on our blog 
>  for 
> more updates.
>
> Thanks,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UCZUjS:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e059fada-c9d8-40c2-98d1-fd694568eca6%40googlegroups.com.


Re: How to fetch Household Income/Demographic Data through Adwords API?

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi James,

Using AdWords API, you can look at the field name's Display name to see what 
the field should be name in the UI. For example, Criteria for the Age Range 
Performance Report will show as Age range in the UI. This guide shows what API 
report maps to what in the UI.

You can use this guide to see what API reports from AdWords API map to which 
reports in Google Ads API. While there is no Household income report currently, 
you can use the parental_status_view, age_range_view and gender_view 
respectively.

Cheers,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UOEjvh:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/525fy0Q4H87200ZHhK0HJSRPyDLFPFLaeuXQ%40sfdc.net.


Household Income through Google Ads API V2

2020-01-21 Thread James Nixon
Where is the demographic view or something to access and report on 
household income range within the google Ads API v2? I was old this 
information was not available in the AdWords API and that I neede to switch 
to the Google Ads API. I still can't find out how to report on it. 

The information is clearly in the Adwords UI.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/993c5240-abd7-4a49-ab51-7de25c0f583a%40googlegroups.com.


RE: How To Send GoogleGlobalTag & Snippet to User via email using java api For WebSite & PhoneCall ConversionTracking

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hello Vicky,

Thank you for reaching out. With regards to your concern, it is not possible to 
send the Google global tag & Google Snippet to users email address via API. I 
have created a feature request internally within our team on your behalf. 
Please keep an eye on our blog post for more updates and announcements related 
to this. Let us know if you have any additional concerns.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001USwqKk:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/itPVd0Q4H81400tQQAp8XCSwCAmZlRU6GD1A%40sfdc.net.


RE: expanded dynamic search ads preview - how to get from API?

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hello Oksana,

Thank you for reaching out. You could use the AdGroupAdService to retrieve the 
list of ads via API where the response will consist of AdGroupAd of types 
listed here. For ExpandedDynamicSearchAd, you will be able to retrieve the 
displayUrl field as well as other ad details via API. Please refer to these 
code samples for reference. If you are still not able to retrieve these details 
via API, please share the complete request and response logs along with the 
client customer id for further investigation.

P.S. Please use Reply privately to author option while sharing the details.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001USwqeO:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fHybO0Q4H6FR00vLv3vWnvSU2sj0zjs-aAzg%40sfdc.net.


RE: change status vs. change history

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Asaf,

Thank you for reaching out. Please share your client customer ID and downloaded 
report via reply privately to author so that I can further investigate the 
issue.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwsbc:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/Vlns30Q4H6BD00U874zV0ITTasl2v-ycmBEA%40sfdc.net.


RE: Why the token is expired even I had configured the refresh token?

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Xingguo,

Thank you for reaching out. Please provide your client customer ID and complete 
detailed request and response logs via reply privately to author so that I can 
further investigate the issue. If you're using AdWords API, you can find 
information on enabling logging here. If you're using Google Ads API, you can 
find it here.

Please make sure you have properly set up your config file and got your refresh 
token by following the instructions here.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwqaM:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/Sisrp0Q4H5UH004cubzynGT_mAA2UgDRvgpg%40sfdc.net.


RE: Google AdWords connect to MCC account and pull the data using API

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Bhanushankar,

Once you create your credentials from the MCC level, you should specify a 
client account in your clientCustomerId for your adsapi_php.ini to run API 
calls and reports. Let me know if you face any issues.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001USwqKa:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/vNXAP0Q4H4GK002JdekwHORViyjOmiv7sMtA%40sfdc.net.


RE: the time limit of the assets's url

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hello Zhang,

Thank you for reaching out. With regards to your concern, the limits for 
asset.image_asset.full_size.url in the API should match the limits in the web 
interface. There is no maximum limit documented for this field, however, a URL 
has a maximum limit of around 2000 characters before it will no longer function 
properly in some browsers. So, I would recommend to specify the URL within the 
practical limits. Let us know if you need any additional information.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001USwqJm:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/scE5B0Q4H45S00jbgrw7gKRL24FTeicnnomg%40sfdc.net.


RE: 'User Based' Reach and Frequency in AdWords API

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi,

The Cookie-based reach metrics were replaced with the unique users in Google 
Ads in July 2019. Unfortunately, this field isn't currently available in the 
API nor will you able to calculate it yourself. You can follow our blog for any 
updates.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001USwqOh:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7jzk20Q4H3YC00hJBNcPl6Qhyqf7MnmWKSzA%40sfdc.net.


RE: module 'google.ads.google_ads.v2.proto.errors' has no attribute 'errors_pb2'

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hello,

Thank you for reaching out. This error can be observed as a result of the setup 
issues. Could you please try to re-download and install the latest version of 
our Python client libraries from here to remedy setup issues. Please give this 
a try and let me know if you still run into issues.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001USwqJN:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ti_gl0Q4H3VE00yfY-TMSGQzyU-CxHo9lGCA%40sfdc.net.


RE: Customer Account not Active

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Niti,

Thank you for reaching out. Since your developer token only has test access, 
you will not be able to make calls against a production account. If you would 
like to make test calls, you have to set up a test account as explained here. 
If you would like to apply for Basic token access to make calls using a 
production account, you can fill out this application.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwsAd:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0Sapm0Q4H3SV00ZtiVxpYDTVaSs50KLGeOyw%40sfdc.net.


Re: How to get google ads account credit or balance?

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Akav,

In the case that your Automatic Budget account is set to unlimited making the 
subtraction impossible, then unfortunately it is not possible to obtain the 
remaining credit, as remaining credit is not directly accessible by API. Please 
let me know if you have further questions.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5001USwdAo:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/E6Hus0Q4H3PK00DrQh9X0ITFKdx6C1ys_ZPg%40sfdc.net.


RE: Can I get "life event" data from Audience?

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi,

Unfortunately, this audience targeting type is not currently supported in the 
API. I have filed a feature request on your behalf so please keep an eye on our 
Developer Blog for information on future releases.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwqMH:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/iyGpf0Q4H2X800-56DfClnQVG5Hm7XbOQdVQ%40sfdc.net.


Re: Traffic Estimation Service Data for Search campaign

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Pradeep,

The TargetingIdeaService's average CPC is based on historical metrics so it is 
a good projection but will not accurately reflect the CPC for the keyword in 
the user's ad group. I recommend implementing a way to get the max CPC from the 
user as it is very specific to their account. If this is not possible, you can 
estimate it based on the values returned from the TargetingIdeaService however 
this isn't likely to match the forecast shown for the ad group.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwhyO:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/_bbp-0Q4GYO700JVoOkSuQQ7WnzNe0K_r76Q%40sfdc.net.


Re: How to fetch Household Income/Demographic Data through Adwords API?

2020-01-21 Thread James Nixon
I've worked through the issues with the google ads API and now have it 
running, but there is little documentation in terms of mapping available 
from the UI to the API using AdWords Query Language.. 

In the Google Ads API, how can i get the same information for Demographics 
(Parental Status, Age, Household Income, Gender) from the UI. What are 
those fields called: 



On Tuesday, December 17, 2019 at 4:42:45 PM UTC-5, adsapiforumadvisor wrote:
>
> Hello James, 
>
> Thank you for clarifying this. The AdWords API is only able to display the 
> same data as the old AdWords UI. It is likely that this will be fixed in 
> the AdWords API. You could explore the option of trying this with the new 
> Google 
> Ads API  and see 
> if you can fetch the Income/demographic data through the API. 
>
> Regards,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UOEjvh:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8a567228-3b81-42eb-94c5-8a99bb408a03%40googlegroups.com.


RE: Getting grouped keyword ideas from Google Adwords API

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hello Shoaib,

Thank you for writing to us. Currently, the AdWords API does not support 
retrieving grouped ideas using TargetingIdeaService. I have created a feature 
request internally within our team regarding your concerns. Please keep an eye 
on our blog post for future updates and announcements related to this. You may 
refer to this guide for more information regarding targeting ideas. Please let 
me know if you have further concerns.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001USwsAO:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/iRw1F0Q4GX1W00Ch0VPnN-TVadjO4MHw0ABQ%40sfdc.net.


RE: Does this Keyword Planner result make logical sense?

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Zack,

Since your issue is related to the Keyword Planner, which is a tool in the 
Google Ads UI, I'd recommend reaching out to the product support team by 
clicking on one of the links below the page I sent. They should be able to let 
you know why the Keyword Planner is behaving that way.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001USwqk2:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/Wv3-B0Q4GWN800rtuaeHLVSlC7ITg9T8vGhg%40sfdc.net.


Re: Get list of Affinity Categories and In-market categories

2020-01-21 Thread Pietro Galassi
Yes! Already did it :) Thanks anyway!

Ho to get list of AGE_RANGE or GENDER from tables ?

Regards,
Pietro

On Tuesday, 21 January 2020 17:16:27 UTC+1, adsapiforumadvisor wrote:
>
> Hello Pietro,
>
> Thank you for clarifying this better. To retrieve the full list of user 
> interest criterion via Google Ads API Beta, you could use the 
> user_interest 
>  
> resource where the field user_interest.taxonomy_type 
> 
>  will 
> give you the taxonomy type of the user interest. You could use 
> GoogleAdsService.search 
> 
>  to 
> retrieve this resource via API. Let us know if you are still having issues.
>
> Regards,
> Nikisha Patel, Google Ads API Team
>
>
> ref:_00D1U1174p._5001USwkIB:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cabbf36f-e0e7-4371-84db-06bde5bec16b%40googlegroups.com.


Re: AdWords API: how to get the list of audience of an ad group?

2020-01-21 Thread Harry
Hi Mitchell,

Thanks for the pointer to the AdGroupCriterionService.get() 

 method! 
That was helpful!

On Friday, January 17, 2020 at 12:22:57 PM UTC-8, adsapiforumadvisor wrote:
>
> Hi Harry,
>
> Thank you for reaching out. You can use the AdGroupCriterionService.get() 
> 
>  method and 
> select the CriterionCustomAffinity 
> 
>  type to 
> get these specific audiences.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001USwl4V:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/009fdf3c-4a2b-4f5a-826e-2c227389cb62%40googlegroups.com.


RE: Postal Code - Geo

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi,

Glad to hear you were able to resolve your issue. Let me know if you run into 
any other trouble.

Cheers,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001USwqMl:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/hlYtE0Q4GSO300SVoLEGiTS_qfgiK4ngBXuA%40sfdc.net.


Iam here was the way to get my friends

2020-01-21 Thread فايز المزيريب


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CA%2Bs1z%2BUwj4atRa9cg%3DhqPe9ZO_a0SQxFHFjLe2rzsE4H_VqR2A%40mail.gmail.com.


RE: Internal API Error

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Evgeny,

Your response looks ok, however, the campaign you are trying to update is a 
removed campaign which should cause you issues. Please try this call again with 
a campaign that is either paused or enabled.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001USwppM:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5ENP90Q4GR9R00PHyKBcp3QwakGERk6GD_ow%40sfdc.net.


Re: Stats discrepancies between AdWords API geo performance report and Google Ads geographic reporting (UI)

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Yakir,

We have identified an issue on our end and are working to resolve it. I will 
let you know when there are any updates.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwOmb:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1N5p80Q4GQEI00uuSm0IytRR-X_M6uCpKl6Q%40sfdc.net.


change status vs. change history

2020-01-21 Thread Asaf Zinger
Hi,
I'm using GoogleAds API change_status to get my campaign change history 
with this query:

> SELECT 
> change_status.ad_group,
> change_status.last_change_date_time,
> change_status.ad_group_ad,
> change_status.resource_status, 
> change_status.resource_type, 
> change_status.campaign,
> change_status.ad_group_criterion, 
> change_status.campaign_criterion,
> campaign.resource_name
> 
>  FROM 
>  change_status
>  
>  WHERE 
>  change_status.last_change_date_time DURING 
> LAST_7_DAYS and
>  campaign.resource_name = '{google_campaign_id}' 
> and
>  change_status.resource_type in ('CAMPAIGN', 
> 'AD_GROUP', 'AD_GROUP_AD')
>  
>  ORDER BY change_status.last_change_date_time



The API result is different than the Ads Manager UI result. 
for example, when searching for the changes in the last 7 days, the API 
returns 5 results (AD_GROUP_AD changes)  but the UI change history view 
shows 0 results.
What can be the problem? Am I using it wrongly or is this the wrong API to 
get the change history?

Thanks,
Asaf.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e5c5f99f-0c44-4ae4-bc7a-3f0cc52f50db%40googlegroups.com.


OfflineConversionError exception handling

2020-01-21 Thread 'Iskander Taneev' via AdWords API and Google Ads API Forum
Hello! 

I am uploading offline conversions using googleads api. My goal is to 
upload records that can be uploaded and do something with the records that 
can't be uploaded (ex: OfflineConversionError.EXPIRED_CLICK). I am using a 
standard template for my 'main' function from v201809 
'upload_offline_conversions.py'. Here is what I'm doing:

*try:*
*main(adwords_client, conv_name, gclid, conv_dt, con_vl)*

*except errors.GoogleAdsServerFault as er:*

*if er.errors[0]['errorString'] == 
'OfflineConversionError.EXPIRED_CLICK':*
*print('Do something')*

Output that I get: 

*Do something*
*Error summary: {'faultMessage': '[OfflineConversionError.EXPIRED_CLICK @ 
operations[0].operand]', 'requestId': '00059ca5009cf2710a37d718110105b0', 
'serviceName': 'OfflineConversionFeedService', 'methodName': 'mutate', 
'operations': '1', 'responseTime': '318'}*

The code still runs, but *why am I seeing 'Error summary', which can appear 
before or after 'Do something' statement? And how can I get rid of it?  *My 
initial problem was trying to isolate OfflineConversionError.EXPIRED_CLICK 
error which I'm trying to do with 'except' statement above.

Another solution in dealing with this might be using 
'client.partial_failure = True' in 'main' function. However, then I'm not 
sure how to 'Do something' with the clicks that fall into 
OfflineConversionError.EXPIRED_CLICK category, since then I'm getting 
'TypeError: *'NoneType' object is not subscriptable'* which comes from the  
   

*print('Uploaded offline conversion value of "{}" for Google Click ID '*
*  '"{}" to "{}".'.format(new_feed[0]['conversionValue'], 
new_feed[0]['googleClickId'],*
* new_feed[0]['conversionName']))*

statement inside 'main' function.

The only thing that I can currently do in order to avoid 'Error summary' is 
to 'client.partial_failure = True' and do the following:

*try:*
*main(adwords_client, conv_name, gclid, conv_dt, con_vl)*

*except Exception as er:*
*print(er.__dict__)*
*print(er.args)*
*print('Do something')*

With output:
*{}*
*("'NoneType' object is not subscriptable",)*
*Do something*

But it doesn't fit my task of doing something with messages with different 
(possible) error types.

Any help would be greatly appreciated!

Regards,
Iskander


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fec58d97-5d9e-4a21-9d53-9fec2915094a%40googlegroups.com.


Customer Account not Active

2020-01-21 Thread Niti Bala
I created manager account today and tried to get manager customer id 
through API but an error occurs "[AuthorizationError.CUSTOMER_NOT_ACTIVE @ 
; trigger:'']".
I am not understanding why this error occurred with new accounts, If it is 
due to billing setup then no error occurs in this customer id(772-984-4397) 
, this account don't have billing setup completed.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1f8b8edf-d01c-4973-a0e2-fb384ae6db82%40googlegroups.com.


Search Volume for keyword phrases

2020-01-21 Thread Muhammad Shoaib
Hi there, 

Is it possible with the Google Adwords API to get search volume for a 
phrase instead of a keyword? In the existing setup, I get always empty 
result for a phrase.

Regards

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e5877a9a-1859-4bdb-9faf-359fbf236809%40googlegroups.com.