Hi,

I am trying to pull the conversion type name and click assisted conversions 
using the .net api v201402.

My code is as following. It fails on pulling the conversion type name and 
click assisted conversions but works for campaignname and 
clickassistedconvesins (Commented out)

    definition.reportName = "Last 7 days CRITERIA_PERFORMANCE_REPORT";
            definition.reportType = 
ReportDefinitionReportType.CAMPAIGN_PERFORMANCE_REPORT;
            definition.downloadFormat = DownloadFormat.XML;
            definition.dateRangeType = 
ReportDefinitionDateRangeType.CUSTOM_DATE;

 
            Selector selector = new Selector();
            DateRange dateRange = new DateRange();
            dateRange.min = datestart;
            dateRange.max = dateend;
            selector.dateRange = dateRange;
            //selector.fields = new string[] { 
"CampaignName","ClickAssistedConversions" };
        
            selector.fields = new string[] { "ConversionTypeName", 
"ClickAssistedConversions" };
            
          
            Predicate predicate = new Predicate();
            predicate.field = "Status";
            predicate.@operator = PredicateOperator.IN;
            predicate.values = new string[] { "ACTIVE" };
            selector.predicates = new Predicate[] { predicate };

            definition.selector = selector;
            definition.includeZeroImpressions = false;
            
 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to