Skip to content

$("<node-name>").item#

Not avaialble in Function node

$("<node-name>").item isn't available in the Function node.

Returns the data of a specified node.

1
2
3
4
5
6
7
8
// Returns the fileName of binary property "data" of Node "HTTP Request"
const fileName = $("HTTP Request").item.binary["data"]["fileName"]}}

// Returns the value of the JSON data property "myNumber" of Node "Set"
const myNumber = $("Set").item.json['myNumber'];

// Returns the value of the parameter "channel" of Node "Slack"
const channel = $("Slack").item.parameter["channel"];