How recover form's URL

I have a workflow that in the middle of it I’m generating a form next page node from n8n , and in it I know that if I close the tab that was opened, I can go back in the running workflow, click the node and recover the url that would be something like ‘/form-waiting/373’.

Would I be able to do something similar in production?

If this is not possible, can I access this url in any way to store it and send it by email to the user?

This is in case the user closes the forms or something happens for the forms to be closed in the middle of the process and lose access to it since it seems to create an id of its own

Information on your n8n setup

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

You can get it with expression {{ $execution.resumeFormUrl }} and send it, store it, or whatever.

1 Like

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