This node allows you to customize data extraction and manipulation then return data in JSON format to the following node.
Example: Read a JSON file, parse its content, and return the resulting JSON object.
var jsonContent =FileUtil.readFileContent("d:\\creds.json");returnJsonUtil.parse(jsonContent);
Example: Retrieve data from API and return as JSON
// Initiate an HTTP GET requestvar request =HttpUtil.get("https://boi.org.il/PublicApi/GetExchangeRates");// Parse the JSON responsevar jsonContent =JsonUtil.parse(request.asString().getBody());return exchanges;