Any data passed to the workflow at runtime will be avaliable in the built-in variable input
.
"foo: " + input
If passing in a JSON object, you can then use dot or bracket notation to access the arguments.
"foo: " + input.foo
The workflow accepts a single argument of any type (string, number, boolean, array, object, etc.) and will be available in the
input
variable.