Hello
My problem now is that neither the old or new values work.
I'm using the C# libs (latest ones v18.9) and have updated the DLLs/references in my solution.
I've checked my code against the latest examples and I'm using the same examples.
What am I doing wrong please?
Code snippets
..
using Google.Api.Ads.AdWords.Lib;
using Google.Api.Ads.AdWords.Util.Reports;
using Google.Api.Ads.Common.Util.Reports;
using Google.Api.Ads.AdWords.v201409;
...
//auth stuff here
...
ReportDefinition definition = new ReportDefinition();
definition.reportName = FileName;
definition.reportType = ReportDefinitionReportType.GEO_PERFORMANCE_REPORT;
definition.downloadFormat = DownloadFormat.TSV;
definition.dateRangeType = ReportDefinitionDateRangeType.CUSTOM_DATE;
...
//selector stuff
selector.fields = new string[]
{
...
"ClickConversionRate", //Was "ConversionRate" before v201502
...
};
...
try
{
ReportUtilities utilities = new ReportUtilities(user, "v201409", definition);
using (ReportResponse reportResponse = utilities.GetResponse())
{
reportResponse.Save(filePath);
}
}
catch (Exception)
{
//our error handling
}