Re: Two canceled BatchJobs during two days

2019-02-08 Thread Ершов Александр
Second batchJob id is 1051814965 On Saturday, February 9, 2019 at 3:26:56 AM UTC+3, Ершов Александр wrote: > > Hello! > > We've seen two batch jobs canceled on Adwords API side recently. > > batchJob IDs > - 1051814965 > - > > Logs > [14:02:58 07.02.2019] - [ADWORDS PUSHER]Uploaded 2029.

Two canceled BatchJobs during two days

2019-02-08 Thread Ершов Александр
Hello! We've seen two batch jobs canceled on Adwords API side recently. batchJob IDs - 1051814965 - Logs [14:02:58 07.02.2019] - [ADWORDS PUSHER]Uploaded 2029. operations for batch job with ID: 1048178962 [14:02:58 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds... [14:03:02 07.02.2019] -

RE: Upgraded client recently broken

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hi Mike, The Perl Client Library v5.7.0 is the latest client library version available for Perl at the moment. Since you already followed the steps for library setup twice

RE: Reports very slow / stuck

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Greetings! We are actively working on figuring this out. We have a couple of users who have reported this, but it's only affecting this report and a few customers, so we're trying to pin down the exact cause. I'll get back to you when I have more news. Best, Nadine Sundquist, AdWords API Team

RE: Huge latency when querying GEO_PERFORMANCE_REPORT

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello All, I just wanted to give an update that we are actively working on this. It appears to be affecting just this report and only specific customers. We are working on trying to find the source of the issue, which appears to be a bit tricky. I'll give updates as soon as I have more news.

RE: Main_color & accent_color in responsive display ad

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hi Nikolay, I was able to create a ResponsiveDisplayAd successfully by passing just the values as below in Java: ResponsiveDisplayAdInfo responsiveDisplayAdInfo = ResponsiveDisplayAdInfo.newBuilder() .setShortHeadline(StringValue.of("I am short headline")) .setLongHeadline(StringValue.of("I am

Re: Can a row count be obtained without iterating through all rows

2019-02-08 Thread Phil
Thanks for the reply, does this give the row count of the total number of rows that would be returned by the query or just the rows on the page? The problem I'm trying to solve is obtaining a total count of all rows that would be returned by a given query, without the need to pull all the data

RE: Delivery Status Notification (Failure)

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello Robert, The corresponding service to set the GeoTargetTypeSetting is not yet available via beta API. I will let my team know regarding your interest. Meanwhile

RE: Can a row count be obtained without iterating through all rows

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello Phil, To get the count of the rows without iterating you could use the below code code snippet for Java. You could use the similar functionality in other client libraries as well to get the count of the results. Also, the PAGE_SIZE attribute can be mentioned for the search query to get

RE: Mobile Sitelinks in GAds interface

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello, Are you referring to setting the mobile device preference via the API? If so, you can use the FeedItemTargetService and set the FeedItemCriterionTarget

RE: Getting a second token with readonly access

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello Ashish, The Read-only access scope from AdWords API only currently not available. As I mentioned in my previous post, the access would be same for UI and the API. Please keep an eye on our blog for any future updates

RE: Set target campaign in Adwords

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello Shweta, With the latest changes as mentioned in this blog , you will need to use FeedItemTargetService to add the targeting options for FeedItems. You may use the specific FeedItem type (Sitelink, Price

RE: version v201809について

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello, Currently the Japanese speaking person in my team is not available. So, I am addressing your issue in English. Python 2 is supported. Please refer to this setup guide. If you are still facing an issue, could you please

RE: customer hierarchy with CustomerManagerLink and CustomerClientLink.

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello Anand, Descriptive name for the customer is not available in the customer_client resource. You have to make another API call to the customer

RE: AdsAccount

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello Anand, It is not possible to get all the accounts details in a single API call via Google Ads API beta. Via Google Ads API beta to fetch the list of accessible account for your credentials. you could use CustomerService

RE: AuthenticationError.CUSTOMER_NOT_FOUND returned when calling CustomerService.getCustomers using v201806

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello Milos, The AuthenticationError.CUSTOMER_NOT_FOUND errors when there is no AdWords account found for the customer Id provided in the header. Please double check the

RE: Retrieving disapproval reasons for extensions

2019-02-08 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hello, Using the extension setting service , depending on at which level the ad extension is, you can get the policy details. For example, to get the details of extension at campaign level, you can use

Upgraded client recently broken

2019-02-08 Thread Mike Diehl
Hi all, We recently received notice that the version of the api that we were using was reaching end of life, so we upgraded. After the upgrade, things ran smoothly. Recently, however, the script(s) have stopped running. So, I redid the upgrade by installing from cpan as root. Now, when I run

Re: AdsAccount

2019-02-08 Thread Anand Sumo
* I am using the below Code to get the All the AdsAccount details. but selecting 5 AdsAccount details its take 36s.* how do I get all my Ads Account with a single request? kindly give me code sample also. > SearchGoogleAdsRequest request = new SearchGoogleAdsRequest() > >

Retrieving disapproval reasons for extensions

2019-02-08 Thread FW API
Hello. I'd like to retrieve information through the api the disapproval reasons for ad extensions. Is that possible? Thank you. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/

Can a row count be obtained without iterating through all rows

2019-02-08 Thread Phil
Is there a way using GoogleAdsService.search, to obtain a row count of the specified search query without iterating and counting every row? It doesn't appear that there's a mechanism for this in the query language itself (such as a COUNT aggregate function). I'm wondering if we can do

version v201809について

2019-02-08 Thread netcom . wso
pyhon2ではv201809はサポートしていないのでしょうか? 以下のエラーが発生します。 サポートバージョンが['v201802', 'v201711']だけと表示されます。 googleadsのアップグレードも完了してます。 -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You

LOP and AOI targeting in beta API

2019-02-08 Thread Robert Mic
Hello, I need to set the "People in, or who show interesting in, your target locations" option as shown in the Google Ads UI when creating a "Brand Awareness and Reach" -> "Display" campaign under "Locations" -> "Target" programatically using the beta API [image: Screen Shot 2019-02-07 at

Mobile Sitelinks in GAds interface

2019-02-08 Thread EA
I'm running a script to get notifications whenever a sitelink is driving to a 404 page. I'm getting alerts for *mobile sitelinks* that are not available (or listed) in the Google Ads interface. You can't find them in the new Google Ads interface, but you can *only see them when you download a

Main_color & accent_color in responsive display ad

2019-02-08 Thread nikolay . makurin
when i try to create responsive display ad with google ads api beta v0_7 i get error WRITE_ACCESS_DENIED for Main_color & accent_color fields. But if i pass this fields, ad creates well. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

Re: customer hierarchy with CustomerManagerLink and CustomerClientLink.

2019-02-08 Thread Anand Sumo
Hi can we get the "DescriptiveName" in same Query? On Friday, 8 February 2019 04:14:22 UTC+5:30, googleadsapi-forumadvisor wrote: > > Hello, > > To get the account hierarchy via Google Ads API beta, you could use the > customer_client >

Re: AdsAccount

2019-02-08 Thread Anand Sumo
Hi sai, I am using GoogleAds API lib. and the Get customers() having a nullable parameter of "ResourceName" or "GetCustomerRequest". so how do i call this method without specifying customerid?as you explained? On Thursday, 7 February 2019 23:38:02 UTC+5:30, googleadsapi-forumadvisor wrote:

Re: Getting a second token with readonly access

2019-02-08 Thread Ashish Pathak
Hi Bharani, Any update about feature request for read only access from Adwords API? is it possible now? On Tuesday, May 15, 2018 at 2:27:18 AM UTC+5:30, Bharani Cherukuri (AdWords API Team) wrote: > > Hi Jason, > > Thank you for your interest. I have shared your feedback with the team. >