Hi all,

I need an additional column, View-Through Conversions, in my Keyword report. 
Is it possible to get the VTC data with v13 API?

My code looks like this:

ver13.DefinedReportJob job = new ver13.DefinedReportJob();
        reportJob.selectedReportType = "Keyword";
        reportJob.name = "Sample Keyword Report";
        reportJob.aggregationTypes = new String[] { "Keyword" };
        reportJob.adWordsType = ver13.AdWordsType.SearchOnly;
        reportJob.startDay = startDate;
        reportJob.endDay = endDate;
        reportJob.selectedColumns = new String[] {
            "Campaign", 
            "Keyword",
            "KeywordStatus", 
            "KeywordMinCPC", 
            "MaximumCPC",
            "Impressions", 
            "Clicks", 
            "CTR",
            "ConversionRate",
            "AveragePosition",
            "Cost",
            "KeywordTypeDisplay"
        };

I tried to add "ViewThroughConversions", but always getting an error that 
some of the parameters are not correct. However, when I remove the VTC 
column, everything works fine.

P.S. I'm using C#.

Thanks.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

Reply via email to