Hi Team,
I am executing the below AWQL for GEO_PERFORMANCE_REPORT, The data looks good for all fields but for CityCriteriaId and CountryCriteriaId the data is showing up in numbers rather than their specific Country/City which should be strings. Can you please provide me your feedback here
report_query = (adwords.ReportQueryBuilder()
.Select('CampaignId', 'CampaignName', 'CampaignStatus', 'CityCriteriaId',
'CountryCriteriaId', 'Clicks', 'ConversionRate', 'Conversions', 'ConversionValue', 'Cost', 'CostPerAllConversion', 'CostPerConversion',
'CrossDeviceConversions', 'Ctr', 'CustomerDescriptiveName', 'Date', 'DayOfWeek')
.From('GEO_PERFORMANCE_REPORT')
.During('YESTERDAY')
.Build())