Not able to reference JSON 2 nodes back

Describe the problem/error/question

Webhook node → HTTP Request node → Core node

Share the output returned by the last node

I can’t figure out how to reference the JSON in the Webhook node. It seems that the JSON is passed to Core node already. See graphic.

Information on your n8n setup

  • n8n version: 1.101.2
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

hello @charleslcso

you won’t find the webhook data in the HTTP node. The correct way is below:

const webhookData = $('Webhook').last().json
const fileContent = $input.last().json.data;
1 Like

Thank you @barn4k . Appreciate alot. Saved me a few hours.