I'm trying to pull Keyword Performance Report and I'm having trouble figuring out
I want to use the AWQL method:
// Create report query to get the data for last 7 days.
$reportQuery = 'SELECT CampaignId, AdGroupId, Id, Criteria, CriteriaType, '
. 'Impressions, Clicks, Cost FROM KEYWORD_PERFORMANCE_REPORT '
. 'WHERE Status IN [ENABLED, PAUSED] DURING LAST_7_DAYS';
but I'm confused on how to implement it. Am I supposed to use the Query Method to pull this off? I'm looking at the examples and I don't see anything about where to put KEYWORD_PERFORMANCE_REPORT.
Right now I'm taking an example and just replacing the $query with what I need, but I don't know where to put KEYWORD_PERFORMANCE_REPORT. Am I suppose to put it as a use Google\AdsApi\Adwords\v201802\cm\...... and if so, I couldn't find a Keyword performance file to help me out.
Any help would be greatly appreciated.