| Title | Last Updated | Summary |
|---|---|---|
| CSV Service | March 10th, 2026 | Manage and process CSV Files |
The CSV service provides functionality for managing and processing CSV Files.
svc.csv.merge
Receives a list of File IDs and return a merged CSV File.
let files = [];
let cursor = sys.data.find('files');
while (cursor.hasNext()) {
let record = cursor.next();
files.push({
record.field('file').id(),
});
}
let file = svc.csv.merge({ files });
console.log(JSON.stringify(file));SLINGR is a low-code rapid application development platform that accelerates development, with robust architecture for integrations and executing custom workflows and automation.
This package is licensed under the Apache License 2.0. See the LICENSE file for more details.