Re: Dynamic destination url tokens/variables?

2010-08-11 Thread Navneet
I discussed this feature with Google developer during the 2009 Launch event and their answer was no. In future, it might be available though. You can assign two variables at Ad text level but you can not do the dynamic insertion at Ad URL. On Aug 10, 3:02 pm, Jonathan Beebe wrote: > I'm looking

Re: AdGroupAdService problem

2010-08-11 Thread Navneet
As far as I know, you can only update the status of an Ad copy and cannot change anything else. The work around here is upload a new ad with modified text and delete the old one. I hope that helps!! On Aug 10, 4:10 am, barta wrote: > Hi, > > I have a TextAd in an AdGroup and I would like to modi

Re: Clarification on BulkMutateJobService costs

2010-08-11 Thread Navneet
That seems to be correct. If you use mutate method using BulkMutateJob service, the cost will be 50% (which is 20 tokens in this case). On Aug 11, 12:02 pm, dshevnock wrote: > Based on the following information > onhttp://code.google.com/apis/adwords/v2009/docs/ratesheet.html: > > Using BulkMuta

Re: One keyword in many adGroups?

2010-08-12 Thread Navneet
The Unique Identification of a Keyword is "KeywordId + AdGroupId". You might get the same keyword id from different adgroups (for same keyword text) but "KeywordId + AdGroupId" combination will always be unique. On Aug 12, 7:57 am, barta wrote: > Hi, > > I created a new keyword for an adGroup and

Re: AdWords API Terms and Conditions

2010-08-12 Thread Navneet
I also got the same error a while ago and I found the Terms and condition Page in the Account itself (the account I was trying to access using API). Just accepted the TNC and after that it worked fine. On Aug 12, 3:49 am, Focus wrote: > I've signed up for add words and have my developer token but

Re: how can i get Maximum CPC using Adgroupcriterion

2010-08-18 Thread Navneet
if (BiddableadGroupCriterion.criterion is Keyword) { long lngMaxCPC = 0; Keyword ckeyword = (Keyword)BiddableadGroupCriterion.criterion; lngMaxCPC = (BiddableadGroupCriterion.bids as ManualCPCAdGroupCriterionBids).maxCpc.amount.microAmount; } } } I hope this helps --Navneet On Aug 18, 2:17 

Re: how can i get Maximum CPC using Adgroupcriterion

2010-08-19 Thread Navneet
Hi Syed, MaxCPC is a property of "Bids" attribute of the Keyword. You can access this property using ManualCPCAdGroupCriterionBids object. Is this line of code not working? --Navneet On Aug 18, 11:41 pm, Syed wrote: > Thanks for the reply. > > Can u please make it

Re: problem adding same negative keyword on multiple campaigns

2010-08-19 Thread Navneet
We use Negative keywords very often but never got this issue. Can you share the code, you are using? --Navneet On Aug 19, 2:40 pm, Ugron wrote: > The scenario is this: > 1. I build a NegativeCampaignCriterion keyword, setting with the > campaign id of the first campaign > 2. cal

Re: problem adding same negative keyword on multiple campaigns

2010-08-19 Thread Navneet
on.id); > > Then repeat the code above and only change the line: > >                    ncc.campaignId = ; > whit: >                    ncc.campaignId = 2222; > > The PRINT (result.value[0].criterion.id) will give the same criterion > id like the first one. > > On Aug 20, 12:46 am, Navne

Re: Keyword gettext with special character

2010-08-24 Thread Navneet
N and match type is Broad. When you are getting the keyword, you should extract the matchtype property also to interpret these keywords. I hope this helps. --Navneet On Aug 24, 10:03 am, Syed wrote: > hi, > > I am having problem with getting exact phrase of the keyword. > > When

Re: Chinese keywords problem

2010-08-25 Thread Navneet
/locals to get the exact keyword. I hope this helps. --Navneet On Aug 25, 1:54 pm, Syed wrote: > Hi > > Am trying to import all the campaign of Google adwords user. One of > the campaign's adgroup contain Chinese keywords. I cannot able to > retrive it. Am getting "?

Re: C# Code example needed to get keyword destination URL from adGroupCriterionService

2010-09-23 Thread Navneet
Hi Izran, below is the piece of the code, I am using. (You can customize it as per your need) AdGroupCriterionService objAdGroupCriterionService = (AdGroupCriterionService)Aduser.GetService(AdWordsService.v200909.AdGroupCriterionService); AdGroupCriterionSelector selector = new A

Re: Duplicate keyword IDs

2010-10-06 Thread Navneet
Hi Nikolay, The Unique Identification of a Keyword is "KeywordId + AdGroupId". You might get the same keyword id from different adgroups (for same keyword text) but "KeywordId + AdGroupId" combination will always be unique. Hope this makes sense --Navneet On Oct 6, 3:

Re: Getting Data Hourly

2010-10-25 Thread Navneet
data for whole day. I hope this make sense. --Navneet On Oct 20, 12:45 pm, Thiago Medeiros wrote: > Hello! > > Is it possible to get information (Stats "such as imp, clicks, conv") > on > AdGroupCriterionService or AdGroupService at a specific hour with > DateRange o

Re: Editing Headline/Desc1/Desc2

2011-02-03 Thread Navneet
Hi Darren, You can use Adparams to achieve this. http://adwordsapi.blogspot.com/2009/11/more-dynamic-ads-with-ad-parameters.html On Feb 3, 9:09 am, Darren wrote: > Hi, > > I'm new to using the AdWords API, but need it to simply do the > following: > > When we update a product price in our i

Re: Editing Headline/Desc1/Desc2

2011-02-03 Thread Navneet
, and thus have lots of stats? > > Thanks, > > Darren > > On Feb 3, 7:30 pm, Navneet wrote: > > > > > Hi Darren, > >     You can use Adparams to achieve this. > > >http://adwordsapi.blogspot.com/2009/11/more-dynamic-ads-with-ad-param... > > > On

Re: KeywordText returned as Keyword in Keyword Performance Report

2011-02-22 Thread Navneet
a fix, and will be fixed by the next server updates. For now, please add a check in your code for both node names." I hope that helps. --Navneet On Feb 22, 3:39 pm, HK wrote: > Hi, > > I ran into an issue just now where a keyword performance report was > returning the k

Re: Urgent! a question about KeywordMatchType?

2011-02-28 Thread Navneet
the words followed by a plus sign[+]). Here, the actual Match Type is broad only. I hope that helps. Thanks --Navneet On Feb 28, 4:53 pm, James604 wrote: > Recently, I have noticed that the keyword match type has 5 types: > keyword = broad match > "keyword" = match exact phrase

Re: Urgent! a question about KeywordMatchType?

2011-02-28 Thread Navneet
keyword performance. > > so  "Buy +Cheap Movie ticket" and  "Buy Cheap Movie ticket" should be > not the same keyword,their keywordId should be different or same > > Jameshttp://www.myclapperboard.com > Buy More, Save More > > On Feb 28, 5:04 pm, Navnee

Re: Hourly AdGroup Performance Report

2011-03-10 Thread Navneet
I had the same issue but it was resolved with a work around. Download the data every hour and deduct the previous hour total to get the delta for that hour. I hope that make sense. Thanks --Navneet On Mar 10, 5:05 pm, Darrin wrote: > Tyler... sorry to say, but it can't be done.  

Re: Traffic Estimator v13 service

2011-04-20 Thread Navneet
Hi Manish, We encountered the same issue 2 weeks back. Google Team told us that this is a defect in their system and it will be fixed in next patch. They did not shared the timeline on fixing this though. Thanks --Navneet On Apr 20, 10:47 am, Manish Khettry wrote: > I was wondering

Re: Adwords-brand names

2011-05-11 Thread Navneet
TomTom GPS but you cannot use these terms in the Ads. I hope that helps. Thanks --Navneet On May 11, 9:18 am, BonkBonkonthe-head wrote: > Hi, i sell download products for just Garmin and TomTom and i want to > use adwords and apparently i cant use brand names such as Garmin or > tomtom

GetCampaigns.php is not showing all the campaigns of client account

2016-11-06 Thread Navneet Ojha
Hello All, Please help me out with this problem. I am trying to fetch all the campaigns of my client account. But Not able to do so. It is not showing all the campaigns of the account. I am not able to see video campaigns of the account. Why so? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~