RE: Keyword stats [The String type doesn't accept collections as value]

2019-10-25 Thread Google Ads API Forum Advisor Prod
Hi, Thanks for reaching out. The cause for the issue could be that when you first add the keyword strings in an array you already put them in the [ ], then you are not supposed to put this keywords array in another array, so you could use 'queries': keywords in the code as opposed to 'queries':

Re: Keyword Stats (Clicks, Costs etc.) in v201509

2016-01-21 Thread Anthony Madrigal
Hello, Unfortunately, there is no way to get stats such as clicks or costs other than using reports via the API. For keywords, you will need to run the Keywords Performance Report. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our bl

Re: Keyword Stats

2014-01-20 Thread Danial Klimkin
Dupe: https://groups.google.com/forum/#!topic/adwords-api/ZbLbpBOclSk On Thursday, January 16, 2014 5:14:56 AM UTC+4, Tom wrote: > > Hi All, > > > I am new to adwords and was wondering how to get keyword level stats like > Clicks, Cost etc without downloading the report. > > I tried using AdGro

Re: Keyword Stats in Sandbox

2011-07-25 Thread AdWords API Advisor
Hi Doug, To test stats, try making a call to a test production account; your code seems fine to me. Cheers, Anash P. Oommen, AdWords API Advisor. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.goog

Re: Keyword Stats, Clicks, Costs etc. ?

2011-07-01 Thread Fikret
I solved it reports per client. Thanks :) On 30 Haziran, 16:26, Kevin Winter wrote: > Hi, >   Aside from making the same request (as mentioned above with the selectors) > once for each account, Reports is the the only other solution.  Currently, > cross-client reports is not fully released for th

Re: Keyword Stats, Clicks, Costs etc. ?

2011-06-30 Thread Kevin Winter
Hi, Aside from making the same request (as mentioned above with the selectors) once for each account, Reports is the the only other solution. Currently, cross-client reports is not fully released for the ReportDefinitionService. In the meantime, you can either use v13 cross-client reports or

Re: Keyword Stats, Clicks, Costs etc. ?

2011-06-28 Thread Fikret
Hello again. I did add and download reports. But i dont't want reports. I want to retrieve campaign name, adgroup name, keyword, keyword stats (clicks, costs etc.) with only client id and date range. I am still searching but i didn't found. Sorry for my speech, but i don't speak english very well :

Re: Keyword Stats, Clicks, Costs etc. ?

2011-06-28 Thread Fikret
Hello guys, thanks for answers. I have 30-40 clients in my mcc. I will use only clientID for keyword stats. I am searching cross-client reports but i can't do it. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http

Re: Keyword Stats, Clicks, Costs etc. ?

2011-06-27 Thread jstedman
FYI, That sample code you posted is not v201101 compatible Doug, I wish they would get rid of all the old samples that no longer work as it can cause confusion. In v201101 you would have to use a generic selector like this: http://code.google.com/apis/adwords/docs/selectorguide.html -- =~=~=~=~

Re: Keyword Stats, Clicks, Costs etc. ?

2011-06-27 Thread jstedman
Pretty much the way this works is: An AdGroupCriterion can either be Biddable or Negative. A BiddableAdGroupCriterion has stats and bids associated with it. The stats fields that you can get for a biddable criterion are listed on this page with "Selectable" under their name: http://code.google.c

Re: Keyword Stats, Clicks, Costs etc. ?

2011-06-27 Thread Doug
Hi Fikret, I am beginning to do the same thing as you, a friendly suggestion: Take a look at this: http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v200909/GetAllAdGroupCriteria.php The criteria includes keywords. I have used this to get keywords in an adgroup. Cl

AdWords API Re: keyword stats

2010-02-17 Thread AdWords API Advisor
Hi, Do you have the SOAP XML response that correlates to that request? Which keyword did you expect to see stats for? Best, - Eric On Feb 14, 9:11 pm, d3onlinemarketing wrote: > Hello, > >  here is the xml that was sent to google API to request stats. > >   > http://schemas.xmlsoap.org/soap/ >

AdWords API Re: keyword stats

2010-02-14 Thread d3onlinemarketing
Hello, here is the xml that was sent to google API to request stats. http://schemas.xmlsoap.org/soap/ envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> http://schemas.xmlsoap.org/soap/ actor/next" soapenv:m

AdWords API Re: keyword stats

2010-02-14 Thread d3onlinemarketing
Hello, I changed dates to earlier, to 20090210 and same problem. Stats object is empty -- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-...@googlegroups.com. To unsubscribe from this group, se

AdWords API Re: keyword stats

2010-02-12 Thread AdWords API Advisor
Hi, If you are using the official AdWords API client libraries you can enable logging of the SOAP XML messages. Have you tried different date ranges for the criterion stats, perhaps using newer dates? Have you tried getting stats on different criteria? Best, - Eric On Feb 11, 10:04 pm, d3onlin

AdWords API Re: keyword stats

2010-02-11 Thread d3onlinemarketing
Hello, Doing the following on the on the campaign level works perfectly CampaignSelector selector = new CampaignSelector(); StatsSelector statsSelector = new StatsSelector(); DateRange dateRange = new DateRange(); dateRange.setMin("20090121"); dateRange

AdWords API Re: keyword stats

2010-02-11 Thread d3onlinemarketing
Hello, thanks for a reply. however, adding the dateRange line StatsSelector statsSelector = new StatsSelector(); DateRange dateRange = new DateRange(); dateRange.setMin("20090121"); dateRange.setMax("20090121"); // this line was mis

AdWords API Re: keyword stats

2010-02-11 Thread AdWords API Advisor
Hi, Your code looks great, but I think you are missing just one step, which is to set your dateRange on the statsSelector. It looks like currently you are creating it and then never sending it in the request. In situations like these I recommend you take a look at the resulting SOAP XML, as this