I tried setting my selector like that but am not able to get the FirstPageCpc. It looks like the documentation has not changed :
https://developers.google.com/adwords/api/docs/appendix/selectorfields#v201302-AdGroupCriterionService my @predicates; my $keyword_predicate = Google::Ads::AdWords::v201302::Predicate->new( { field => "Id", operator => "IN", values => [$keyword_id] } ); push( @predicates, $keyword_predicate ); my $adgroup_predicate = Google::Ads::AdWords::v201302::Predicate->new( { field => "AdGroupId", operator => "IN", values => [$google_adgroup_id] } ); push( @predicates, $adgroup_predicate ); # Create selector. my $selector = Google::Ads::AdWords::v201302::Selector->new( { fields => [ "QualityScore", "FirstPageCpc","Id","AdGroupId" ], predicates => \@predicates } ); my $res = $client->AdGroupCriterionService() ->get( { serviceSelector => $selector } ); -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
