Hi !
In the Adwords Editor App and the Adwords website, in a add group, I can filter keywords or placements by {converted clicks} and {cost per converted click}.
How can I do the same filter via the Adwords API?
Or, how can I get {converted clicks} and {cost per converted click} datas for keywords and placements?
For information, my current php code is:
$adGroupCriterionService = $user->GetService('AdGroupCriterionService', ADWORDS_VERSION);
// Create selector.
$selector = new Selector();
$selector->fields = array('KeywordText', 'KeywordMatchType', 'Id', 'CpcBid');
$selector->dateRange = new DateRange('20150401', '20150430');
// Create predicates.
$selector->predicates[] = new Predicate('AdGroupId', 'IN', array($adGroupId));
$selector->predicates[] = new Predicate('CriteriaType', 'IN', array('KEYWORD', 'PLACEMENT'));