Solved
Create a service which initiates a download of a CSV file to your Local (Not To Server)
Is it possible to create a service, which initiates download to my local directory?
So far I see only an option to write a service to download/write CSV file to server as below:
let params = {
path: "anyPath" /* STRING */,
data: anyInfotable /* INFOTABLE */,
fileRepository: "SystemRepository" /* THINGNAME */,
withHeader: true /* BOOLEAN */
};
Resources["CSVParserFunctions"].WriteCSVFile(params);
