Node inputs and outputs
Sharing payloads or results between nodes
To input a payload that is being delivered to the stream (for example from a webhook), use the wildcard {{payload.data}}
in a nodes input field. It will be resolved with the payload sent to the event /stream.
To read a nodes result, you will need its ID and you need to know the nodes outputs. They are to be found underneath the node with the little "Outputs" dropdown-menu, or visible in the debugger when testing.

They will be accessible by wildcard:
{{output.nodeid.NameOfOutput}}
Or more practical: If you wanted to read stderr output from the MacOS Command Runner action, you would resolve the value with a wildcard as follows:
{{output.64d3482f-3151-4615-ah29-1a8d2d1cf84b.StdOut}}
Last updated