Re: not able to access one of the google accounts data in super-metrics

2019-11-08 Thread Sanket Yadav Patil
Hi Mitchell, Thanks for the update. Yes, my both accounts are linked to the same manager account. Supermetrics is automation tool for marketing metrics and analysis and yes i do require API access to be enabled. Let me know how can i enable it and solve the problem. Thanks, Sanket On Sat, Nov

How to get ad group status text?

2019-11-08 Thread Yang Wenjun
Hi Team, I referred to this script: https://github.com/googleads/google-ads-python/blob/master/examples/basic_operations/get_ad_groups.py to get AdGroup data. But I found that all groups' status is 0. results = ga_service.search(customer_id, query=query, page_size=page_size) for row in

Telephone list not populating

2019-11-08 Thread Darren Clyde
I've been uploading telephone numbers to a remarketing list using the api. But for some reason, the list says populating and the correct last update shows but it is not increasing in number. I already have an email list that works just fine. Is there something wrong with the code below? why

Is it possible to change email in the change l

2019-11-08 Thread Thomas Bisballe
Hi All When I use my code via the api to do changes my personal email appears as the auther of changes in the customers change log. How do i change that to the companys email i.e. a...@digiscale.com sincerely Thomas Bisballe -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find

I want to get the information about product level through ads API

2019-11-08 Thread Wantdo Outdoor
Hello, I want to get the information about product level through ads API, but I only found the examples of GetCampaigns and GetAdGroups. I want to know where the code example of getting product level is. It is difficult to find it in the API. [image: product.png] -- --

Re: "CUSTOMER_NOT_ACTIVE" error when using ManagedCustomerService.get()

2019-11-08 Thread Ben Foster
The CUSTOMER_NOT_ACTIVE error was what was resolved with the edit in the previous email. The problem was that I hadn’t specified a client_customer_id with the ManagedCustomerService.get() request. Thanks for the response On Fri, Nov 8, 2019 at 4:19 PM Google Ads API Forum Advisor Prod <

RE: Where can i post Search Ads 360 API questions.

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Arnab, Unfortunately, the Search Ads 360 API related concerns are outside the expertise for my team. You could reach out to that team through the Support page available in their documentation. Hope this helps. Thanks, Bharani, Google Ads API Team ref:_00D1U1174p._5001UMWkEV:ref -- --

RE: OutOfMemory error

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Igor, Thanks for reaching out. This is the issue when you bulk upload with too many requests at the same time which cause the exhaust of the system. Please try to reduce the Queries Per Second to lower the resource usage on the system. Please let me know if you have any further concerns.

RE: "CUSTOMER_NOT_ACTIVE" error when using ManagedCustomerService.get()

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Ben, I'm glad that the issue specific to CustomerService.getCustomers() has been resolved. Could you please confirm if you still need assistance for the CUSTOMER_NOT_ACTIVE error that you were receiving? If yes, please note that the CUSTOMER_NOT_ACTIVE error is triggered when the customer

Where can i post Search Ads 360 API questions.

2019-11-08 Thread Arnab Ganguly
Hello All, Is there any googlgroups for forum like this where I can post questions related to Search Ads 360 API ? I am getting this issue Service return happening successfully but unable to generate report. googleapiclient.errors.HttpError:

RE: How to add headlines for AppAdInfo using python?

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hello Yang, Thank you for reaching out. You need to populate the list of ad_group_ad.ad.app_ad.headlines and ad_group_ad.ad.app_ad.descriptions with the list of strings to add values to this headlines. You could refer to this code sample for adding the parameters to your ad_group_ad and

Re: income range performance from google adwords

2019-11-08 Thread Harisankar Mohanty
Thank you for your information On Saturday, November 9, 2019 at 1:54:22 AM UTC+5:30, adsapiforumadvisor wrote: > > Hi Harisankar, > > Thanks for reaching out. Retrieving the household income statistics (such > as clicks, conversions, conversionRate, cpcBid etc) is currently not > supported in

RE: What is the cause of this error.? This error occurs on and off in google ads

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Gayatri, The INTERNAL_API error occurs when there is an issue with the AdWords API server or due to a bug. You can find more details on this issue here. Regards, Anthony Google Ads API Team ref:_00D1U1174p._5001UMWeu5:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us

RE: income range performance from google adwords

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Harisankar, Thanks for reaching out. Retrieving the household income statistics (such as clicks, conversions, conversionRate, cpcBid etc) is currently not supported in the Adwords API. Please keep an eye on our blog for the announcements and the updates on new releases. Thanks and regards,

Re: "CUSTOMER_NOT_ACTIVE" error when using ManagedCustomerService.get()

2019-11-08 Thread Ben Foster
This is resolved... I was not passing the client_customer_id to the get() request. The revised snippet looks like this: # Initialize the AdWords client. adwords_client = adwords.AdWordsClient( os.environ['GOOGLE_ADS_DEVELOPER_TOKEN'], oauth2_client, os.environ['GOOGLE_ADS_USER_AGENT'],

RE: CPE Bidding Strategy through API

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Daniele, Thanks for reaching out. The CPE Bidding strategy is currently not supported through the API. Please refer to this guide for more information. Please keep an eye on our blog for the announcements and the updates on new releases. Thanks and regards, Xiaoming, Google Ads API Team

Re: "CUSTOMER_NOT_ACTIVE" error when using ManagedCustomerService.get()

2019-11-08 Thread Ben Foster
I should also note that the following code, which uses CustomerService.getCustomers() and is using the same user's credentials as the previous code, is working fine and only returning active accounts: def accounts(): oauth2_client = oauth2.GoogleRefreshTokenClient( g.credentials['client_id'],

Re: Google Ads GeoTargeting Not Providing Correct IDs

2019-11-08 Thread Charles Michael
I'll open a ticket there to figure out what level of detail the ID can be as I was expecting the ID's we submitted is what would be provided. Thanks for your help. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/

Re: "CUSTOMER_NOT_ACTIVE" error when using ManagedCustomerService.get()

2019-11-08 Thread Ben Foster
To provide more context here, the authorized user account whose credentials I'm using to make the request DOES have direct access to multiple cancelled accounts, but it also has access to an MCC that has many active accounts. Based on my understanding from other support threads and this blog

"CUSTOMER_NOT_ACTIVE" error when using ManagedCustomerService.get()

2019-11-08 Thread Ben Foster
I am trying to list all managed accounts under an MCC, but I am getting a non-descript "CUSTOMER_NOT_ACTIVE" error. Here is the error: googleads.errors.GoogleAdsServerFault: [AuthorizationError.CUSTOMER_NOT_ACTIVE @ ; trigger:''] I have seen several threads on here saying that

RE: Google Ads GeoTargeting Not Providing Correct IDs

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hello Charles, I understand your concern. In the guide it is specifying that the {loc_physical_ms} will be providing the ID of the geographical location of the click. So, looks like it is tracking at the least granular level to track the click and pin point the location. So, we can't expect it

RE: Is it possible to create uac adgroup with adwords api?

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Wenjun, Unfortunately, it is still not possible to create UAC ad groups in AdWords API. You can, however, create them using Google Ads API. Regards, Anthony Google Ads API Team ref:_00D1U1174p._5001UMWev8:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

RE: Tried to pause a campaign, while doing so, I get this error. This error occurs on and off.

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Gayatri, This error occurs when your API calls for the day exceeds its rate limits. You can find ways to avoid them and more details here. You can also apply for Standard API access, which will give you unlimited API calls. Regards, Anthony Google Ads API Team

RE: Google Budget ID? What does that mean?

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi Mithra, Thank you for reaching out. Budgets are used to manage the amount of money being spent on Ads campaigns. The budgetId is the identification number used to reference that specific budget. Regards, Mitchell Google Ads API Team ref:_00D1U1174p._5001UMWitm:ref -- --

Re: Google Ads GeoTargeting Not Providing Correct IDs

2019-11-08 Thread Charles Michael
Hi, that's strange. To answer your question, this issue is happening about 90% of the time. This is best shown by example, looking at my server logs I am seeing ID's for postalcodes even though I am targeting criteriaID's for cities. Here is an example: I am targetting in my targetingoptions

Re: Google Ads GeoTargeting Not Providing Correct IDs

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hello Cahrles. I don't find any of your response for this concern. At the latest i have your concern reported on Nov 6 only. In general when you respond here you will get a email from our alias " adwords-api@googlegroups.com". Also, you can post your concern on the advertisers community forum

Re: Google Ads GeoTargeting Not Providing Correct IDs

2019-11-08 Thread Charles Michael
Hi, I replied privately to this 2 days ago, but I'm not sure where follow ups go. Is there a mailbox on google groups or does the messages go to my email? Thank you. On Wednesday, November 6, 2019 at 4:58:36 PM UTC-5, adsapiforumadvisor wrote: > > Hello Charles, > > Could you please confirm

Google Budget ID? What does that mean?

2019-11-08 Thread Mithra B
Hi Team, What is Google Budget ID? What does that mean? Thanks & Regards, Mithra B -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you

Re: [2-8014000025508] THIRD_PARTY_REDIRECT_AD Image Preview - how to get from API?

2019-11-08 Thread Brie Engelson
All, has there been any movement here at all since the last comment? Our clients are very disappointed and we would like to understand when this issue will be resolved. Please advise. Thanks! On Monday, May 20, 2019 at 3:21:57 PM UTC-4, adsapiforumadvisor wrote: > > You're very welcome, Oksana!

RE: Setting YouTube Campaign bid via API

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi, Thanks for reaching out. The Youtube Campaigns (thus the Video Campaigns) are only available in reports in the Adwords API and Google Ads API. It is not possible to get/mutate the Youtube Campaign through the API. Please refer to this doc for details. If you would like to retrieve data for

RE: The OAuth client was deleted.

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hi, Thank you for reaching out. It looks like that client test account isn't linked to the manager test account since the Accounts tab of the manager account is empty. Please try and create a new account or link the existing account from the UI by going to Accounts -> "+" -> Link Existing

Re: REST endpoint for customer_client as an alternative to listAccessibleCustomers

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hello, We already have a feature request raised for your concern internally. Please keep an eye on our blog post for future updates and announcements. Regards, Nikisha Patel, Google Ads API Team ref:_00D1U1174p._5001UMWUzl:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find

RE: TargetingIdeaService v201809 malformed response

2019-11-08 Thread Google Ads API Forum Advisor Prod
Hello Jacob, Please find my response to your queries below for further clarification. Yes we are doing this work against our test API account (I assume you mean the API is in test mode): By making call against the test account means you are making an API call against the accounts that are not

OutOfMemory error

2019-11-08 Thread Igor Nikolenko
Hi all. I use this repository https://github.com/googleads/google-ads-java for bulk upload my campaigns, but i catch an error Java Error : OutOfMemory. What i should doing? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

income range performance from google adwords

2019-11-08 Thread Harisankar Mohanty
Hello Guys, Is there a way to retrieve income range performance data from Google Adwords server using php client library ? https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupCriterionService.IncomeRange My requirement is getting some basic info about each household income

Re: TargetingIdeaService v201809 malformed response

2019-11-08 Thread Jacob Peebles
Hello, Bumping this back up. It would be really helpful to get answers to our questions as well as the get the sample SOAP request Dmitry is asking for. Thanks again for the assistance. - Jake -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

not able to access one of the google accounts data in super-metrics

2019-11-08 Thread Sanket Yadav Patil
Hi, I have two google ads account associated with my email ID. I am using one of the analyzing tools named super-metrics which enables me to fetch data from Ads account. While i am able to fetch data from one account, i am not able to get the other account data although i am able to get the

USER_PERMISSION_DENIED

2019-11-08 Thread ads test
my admin test account: 1100663537 my subtest account: 3102301070 I created a campaign in a sub account, but I can't view it. I always get the same error when I run the following commands; php GetCampaigns.php --customerId 1100663537 php GetCampaigns.php --customerId 3102301070 result: {

CPE Bidding Strategy through API

2019-11-08 Thread Traipler SEM
Hi, When i try to create a campaign from ui with Product brand and Consideration goal the bid strategy is automatically setted to CPE. I want to set this Bid Strategy through API. Is it possbile? Please let me know. Regards, Daniele -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also

Re: The OAuth client was deleted.

2019-11-08 Thread ads test
Last error output. { "message": "The caller does not have permission", "code": 7, "status": "PERMISSION_DENIED", "details": [ { "@type": 0, "data": "type.googleapis.com\/google.ads.googleads.v2.errors.GoogleAdsFailure" }, {

Does api supports video upload now?

2019-11-08 Thread Yang Wenjun
Hi Team, I know it is not possible to upload video in previous version. But after a few months later, is the old Adwords API or the new Google Ads API supports video upload now? Thanks! Wenjun -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

The OAuth client was deleted.

2019-11-08 Thread ads test
my admin test account: 1100663537 my subtest account: 3102301070 I created a campaign in a sub account, but I can't view it. I always get the same error when I run the following commands; php GetCampaigns.php --customerId 1100663537 php GetCampaigns.php --customerId 3102301070 result: {

How to add headlines for AppAdInfo using python?

2019-11-08 Thread Yang Wenjun
Hi Team, Below is my code for creating AppAdInfo for some AdGroupAd. Currently I stuck at assign headlines values. I tried to search samples but no succeed. #!/usr/bin/env python # Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use