Re: How I clear CPC for Keyword in AdWords API (Java/v201609)?

2016-11-28 Thread kanek3
Sorry,I got wrong idea earlier. I delete criterionCpcBid.getBid().getMicroAmount() from my code. Then, it works as my wish! Thank you for your help! Kanek3 :-) On Tuesday, November 29, 2016 at 2:03:22 AM UTC+9, Shwetha Vastrad (AdWords API Team) wrote: > > Hi, > > To remove a bid from a

Re: Trying to find some c# sample code for sending a Dynamic Remarketing csv file up to Google's AdWords system.

2016-11-28 Thread 'Peter Oliquino' via AdWords API Forum
Hi Justin, You could include in the selector fields of the FeedItemService.get the FeedItemAttributeValue field and iterate through its results to get the feedAttributeId

Re: Trying to find some c# sample code for sending a Dynamic Remarketing csv file up to Google's AdWords system.

2016-11-28 Thread Justin
Hi again Peter, The FeedItemService.get to return all the FeedItemIds works great. Paging too! Is

Re: How I clear CPC for Keyword in AdWords API (Java/v201609)?

2016-11-28 Thread kanek3
Hi, Shwetha. Yes, my CpcBidSource is 'CRITERION'. well, how i can change CpcBidSource? In the first place, I want to return CpcBidSource to 'ADGROUP' after add keyword level CPC(It follows that CpcBidSource changed to 'CRITERION') thank you. Kanek3 -- --

Re: ExternalConversionSource meaning

2016-11-28 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Yuval, Conversions recorded in the AdWords system are only related to ads and does not include the conversions through organic searches. Regards, Vishal, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Re: ExternalConversionSource meaning

2016-11-28 Thread yuval
Hey Vishal, Thanks for the answer :) When you say the conversion originated on the Google Play store, do you mean it was originated by clicking a google play sponsored ad? or does it include "organic" Google play searches as well? Thanks again On Monday, November 28, 2016 at 8:56:36 PM

Re: Campaign Performance Report returns paused campaigns as eligible

2016-11-28 Thread Mathieu Dubreuil
Hi Anthony, Thanks! My bad, I tried using ServingStatus instead of CampaignStatus. I now only see the eligible ones. On Monday, 28 November 2016 16:57:56 UTC-3, Anthony Madrigal wrote: > > Hi Mathieu, > > Although there is no way to determine whether a campaign is limited by > budget through

Re: Campaign Performance Report returns paused campaigns as eligible

2016-11-28 Thread 'Anthony Madrigal' via AdWords API Forum
Hi Mathieu, Although there is no way to determine whether a campaign is limited by budget through the API, you can use the ServingStatus to get campaigns with eligible statuses. If you

Re: Desktop / Mobile volumes breakdown - TargetingIdeaService

2016-11-28 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Chris, The API doesn't yet support providing search volumes based on different platforms. As far as I know the Keyword Planner in the UI doesn't have this option either. Could you provide a screenshot of the page where you see this option in the UI? Thanks, Shwetha, AdWords API Team. --

Re: retrieve keyword ideas in bulk - using AdWords API / TargetingIdeaService

2016-11-28 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello, Yes, this is a correct usage. Each get request to the TargetingIdeaService is treated independently. You can use the same instance of TargetingIdeaService in your local code for each request. Regards, Mike, AdWords API Team On Monday, November 28, 2016 at 1:52:57 PM UTC-5,

Campaign Performance Report returns paused campaigns as eligible

2016-11-28 Thread Mathieu Dubreuil
Hi, I am trying to get all the serving campaigns for an AdWords user so I can sum up their daily budgets and get the total daily budget for every AdWords user I have. The problem is, the paused campaigns are returned as "eligible", and I would only want to see the " Limited by Budget " and "

Re: ExternalConversionSource meaning

2016-11-28 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Yuval, GOOGLE_PLAY as the ExternalConversionSource signifies that your conversion originated on the Google Play Store. Unfortunately, there is no other way to retrieve a

Re: retrieve keyword ideas in bulk - using AdWords API / TargetingIdeaService

2016-11-28 Thread javier . enciso
Hie Mike, thanks for reaching out. I've implemented it that way now (one call for each deal). But I would like to be certain about one thing you mention: quote *"unique entities that each require separate contexts for the TargetingIdeaService"* I am creating one *TargetingIdeaService* and

Re: Frequently getting Stream closed error whe fetching ads for a Adgroup and for a given campaign

2016-11-28 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, Have you implemented any thread safety measures in your application? The ReportDownloader class in AdWords API client library is not thread-safe. This guide provides more information about threadsafety in the Java

Re: Authorization failed, "Invalid JWT Signature."

2016-11-28 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Rodrigo, invalid_grant error is usually observed if your refresh token has expired . I would recommend regenerating your refresh token using the instructions avaliable for your client library here

Re: How I clear CPC for Keyword in AdWords API (Java/v201609)?

2016-11-28 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, To remove a bid from a BiddingStrategyConfiguration , you need to update its bid field to a Money

Re: Desktop / Mobile volumes breakdown - TargetingIdeaService

2016-11-28 Thread Chris Rock
Never mind, looks like I found it - https://developers.google.com/adwords/api/docs/appendix/codes-formats#platforms 'Platform' parameter. Will run some tests and confirm. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

How I clear CPC for Keyword in AdWords API (Java/v201609)?

2016-11-28 Thread kanek3
I tried and succeeded at create CPC for keyword just that https://developers.google.com/adwords/api/docs/samples/java/basic-operations#update-a-keyword When I want to clear this CPC without remove keyword, how I can do that? I tried Operator.REMOVE at AdGroupCriterionOperation result... clear

Desktop / Mobile volumes breakdown - TargetingIdeaService

2016-11-28 Thread Chris Rock
Hey all, This has been addressed numerous times a year ago - is it still not possible to extract Mobile / Desktop / Tablet search volumes using Keyword Planner API (TargetingIdeaService)? If this is not supported, why did Google even bother showing this in UI, since you cannot even extract it

Re: retrieve keyword ideas in bulk - using AdWords API / TargetingIdeaService

2016-11-28 Thread 'Michael Cloonan (AdWords API Team)' via AdWords API Forum
Hello, Each call to the TargetingIdeaService is only able to provide results for a single separate query. If you have 10k unique entities that each require separate contexts for the TargetingIdeaService, then unfortunately, yes, you will need to make 10k different calls. Regards, Mike,

Authorization failed, "Invalid JWT Signature."

2016-11-28 Thread Rodrigo Munoz
Hi We have been using the Adwords API from the last two years using OAUTH2_SERVICE_ACCOUNT, and .p12 file to authenticate. But since last Friday we are getting this error, and we were not able to make it work again. Signet::AuthorizationError: Authorization failed. Server message: > { >

ExternalConversionSource meaning

2016-11-28 Thread yuval
Hey guys, I was wondering about the meaning of the new field ExternalConversionSource, available in the ad hoc performance reports (e.g. AD_PERFORMANCE_REPORT --> https://developers.google.com/adwords/api/docs/appendix/reports/ad-performance-report#externalconversionsource ). When the value is