After connecting to API console to get the required reports, we were able 
to generate the reports clients based. We need to have the following 
additional condition to be placed in our report to filter the data, kindly 
help me on this.

 We are currently generating Campaign Performance report (Yesterday’s date) 
thru our C# code. We need to have some limited columns over there, 
currently we are getting following fields.

 // Create selector.

Selector selector = new Selector();

selector.fields = new string[] { "AccountDescriptiveName", "Date", 
"CampaignName", "Clicks", "Impressions", "Cost"};

 

But apart from this we need to have, ClickType as another column in our 
report, as per my analysis, ClickType is not a direct field in Selector, so 
need to write some Predicate for that, the same way I tried, but couldn’t 
succeeded. The same way using Predicate I written code for “Status”, that 
working fine where as “ClickType ” is not working either with Predicate or 
regular fields. 

 

The following code for ClickType using Predicate is not working. It is not 
even generating any of client reports, 

 

Predicate predicateHeadLine = new Predicate();

predicateHeadLine.field = "ClickType";

predicateHeadLine.@operator = PredicateOperator.IN;

predicateHeadLine.values = new string[] { "URL_CLICKS" };

selector.predicates = new Predicate[] { predicateHeadLine };

 

definition.selector = selector;

 

The same way I used for Status using Predicate, the below code is working 
fine if I commented above code.

 

Predicate predicateStatus = new Predicate();

       predicateStatus.field = "Status";

       predicateStatus.@operator = PredicateOperator.IN;

       predicateStatus.values = new string[] { "ACTIVE", "PAUSED" };

       selector.predicates = new Predicate[] { predicateStatus };

 

 

*But I want ClickType to be in my report, so then only I can validate my 
data. I need ClickType with Headline data only, the rest I should avoid, so 
that is the reason am trying to get ClickType in my report.*

Thanks in advance.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
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/groups/opt_out.

Reply via email to