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.

The http clients outputs underneath the nodes toolbar as a dropdown menu

They will be accessible by wildcard:

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:

Last updated