Hello!
I am currently working on keyword duplicate script and I want to include such features keyword targeted locations and language, but I couldn't find information about such a features, so maybe somebody can help!
Here i current script fragment:
var adrep = AdWordsApp.report
( ' SELECT CampaignName, CampaignId, AdGroupId, AdGroupName, Criteria , KeywordMatchType' +
' FROM KEYWORDS_PERFORMANCE_REPORT ' +
' WHERE CampaignStatus = ENABLED AND AdGroupStatus = ENABLED AND Status = ENABLED ' +
' DURING LAST_30_DAYS ').rows();
while (adrep.hasNext()) {
var row = adrep.next();
var key = row['Criteria'].toLowerCase();
var match = row['KeywordMatchType'];
var united = key + ' ' + match;
key - keyword,
match - keyword match type,
GEO targeted location - ?,
Language targeting - ?,
united - all criterias together.
The question is simple, can i get location and language targeting for keywords?
Sincerely,
Toms Martins Simanis.