How to retrieve flow data in n8n form response submitted text

At the end of a n8n form submission, I want to retrieve some data coming from the flow, and display them to the user.

I don’t think it is possible, but would like to make sure.

Is there a workaround?

It looks like your topic is missing some important information. Could you provide the following if applicable.

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

hello @n8ninja

You can do it with Respond to Webhook node

2 Likes

Arigato gozaimasu @barn4k :pray:
This is exactly what I was looking for.

For those who might be interested, to display a custom page after the submission of an n8n form, at the end of the workflow, using a Respond to Webhook node, you should choose to Respond with “Text”.

It’s interesting to note that you can pass any HTML you want, but you cannot change the head tag. It will be removed, so you can only pass the content of the body tag.

Here is a sample workflow that displays a confirmation with both variables from the form and the workflow.

1 Like

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