How can I pass parameter to a Robot using NodeRed

How can I pass (IN Argument) parameter defined in Robot using NodeRed?

msg.payload = {"IN-ARGUMENT-NAME": "ARGUMENT-VALUE"}

using json type’s to match the .net types … ie

msg.payload = {
    "my-string": "some text",
    "my-boolean": true,
    "my-int": 10,
    "my-float": 50.22,
    "my-date": (new Date()).toISOString()
}
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.