This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
Hi,
You can use the below expression a mapper followed by a splitter snap.
$value.split(“;”)[1].split(“,”).map(x =>$value.split(“;”)[0]+“;”+x)
in the above expression, $value is assumed to be the actual source value.
The example source json is as fol...
Hi @sravankunadi ,
You are missing the concatenation. where ever your are trying to replace the value dynamically you need to use the " or ' along with +. In your case, the expression should go like below.
lib.env.marketo.api+‘rest/v1/leads.json?fil...
Hi,
You can try using the gate snap after Oracle execute snap. Gate snap will always provide the output, even if there is no data then an empty array will be there. In the router check $input0.length > 0 for records else true. Add the splitter snap i...