Use Rule Variables in Scripting Rules
This page contains an simple tutorial how to implement Rule Variables into your Scripting rule script.
Last updated
Was this helpful?
Was this helpful?
const foo = ruleVariables.foo;
const bar = ruleVariables.bar;
output.Output = `Values of Rule Variables are: ${foo} and ${bar}`;
return output;