I do not see any attribute to get the search term in the Keywords Performance Report.
I am trying to set the fields in the selector for my report so that I can see the search term along with ids. It looks to me that I need to query separately to fetch the search terms passing kw-ids - or am I doing something wrong?.
// Create Selector.
$selector = new Selector();
$selector->setFields(
[
'CampaignId',
'AdGroupId',
'Id',
'Impressions',
'Clicks',
'Cost',
]
);
$selector->setPredicates(
[
new Predicate('AdGroupId', PredicateOperator::IN, $adGroupIds),
new Predicate('Clicks', PredicateOperator::GREATER_THAN_EQUALS, [1]),
]
);