I managed to get the rest of the fields from AD_PERFORMANCE_REPORT API (I'm with Java API) with the following selector:
selector.getFields().addAll(Lists.newArrayList("CampaignName", "AdGroupName", "Id", "AdGroupId","ImageCreativeName", "Description1", "Description2", "Impressions", "Clicks", "Conversions"));
But I can't find a field to get Ad Name. Does that field exist or should I make a cross request to another service to get that name?
P.S: Also, it's unrelated to the main problem, but I'm trying to get the fields as UTF-8 but characters like áéíóú and € symbol doesn't appear correctly. Is there some way to fix it?
Thanks in advance.