Hi,
I am trying to log daily conversions(total) for a list of adgroups. Below
is the query :
SELECT Date, Conversions FROM ADGROUP_PERFORMANCE_REPORT WHERE Id IN
['2974374296','2974376696','2974376936','2974379576','2974380896','2974384616','2974384856','2974386416','2974387136','2974388096
Hi Jaison,
Below code snippet will work for keywords under a specific adgroup
(ADGROUP_NAME)
var adgroup = AdWordsApp.adGroups().withCondition("Name = '" + ADGROUP_NAME
+ "'").get().next();
var keywordIter = adgroup.keywords().get();
while (keywordIter.hasNext()) {
var keyword = keywordIter.n
Hi Ramakrishna,
What is the error generated?
Try including "Click Type" in your selector list like below:
// Create the selector.
Selector selector = new Selector();
selector.fields = new string[] {"AccountDescriptiveName", "Date",
"CampaignName", "Clicks", "Impressions", "Cost"};
Hey Szabolcs,
You can get "Device" column for "Ad Performance Report" with API version
v201306.
Regards,
Varta
On Thursday, November 14, 2013 9:53:27 PM UTC+5:30, Szabolcs Pal wrote:
>
> Hi all,
>
> I have a short question regarding the Device column in the Ad Performance
> Report:
> From whi
/adwords/api/docs/appendix/reports#keywords
>
> Thanks,
> Josh, AdWords API Team
>
> On Friday, October 25, 2013 9:04:37 AM UTC-4, varta convonix wrote:
>>
>> How do I calculate quality score with keyword performance report for a
>> month if I have data on date level?
How do I calculate quality score with keyword performance report for a
month if I have data on date level?
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~