I'd like to get a report with City and region names in a language different than English (Japanese in this case).
var report = AdWordsApp.report(
"SELECT CampaignName, AdGroupName, Device , AverageCpc, AdGroupId, Clicks, AveragePosition, CountryCriteriaId, RegionCriteriaId, CityCriteriaId " +
"FROM GEO_PERFORMANCE_REPORT " +
"WHERE Impressions > 0 AND AdGroupStatus = 'ENABLED' AND Clicks > 0 AND Device != 'UNKNOWN' " +
"DURING "+dates[0]+","+dates[1]);
The same goes for RegionCriteriaId and CountryCriteriaId.
1) Is there a way to get Country/ Region/ City names in a language other than English?
2) If there isn't, how do I get the RegionCriteriaId,CityCriteriaId and CountryCriteriaId as an Integers ?
Thank you very much.