Describe the problem/error/question - How can I extract the production URL from a triggrer form node, to use it in a later node in the workflow? I only see the short UID, which is different than the long form UUID.
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
Share the output returned by the last node
Information on your n8n setup
- n8n version: 2.1.4
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
- Operating system:
Hi @Randall_Crumm,
you could add the form path option to make the url cleaner to read. This way you can hardcode it down the line as it will be predictable.
However if you want to use the wait on form node, you can get the url using
{{ $execution.resumeFormUrl }}
See example below: