Dynamic URL for form trigger

Is there is a way to make the production URL of the form trigger dynamic. Currently, I have made a trigger form for each day and I want to make the form URL change for each day so that one cannot access the same form using the previous URL.

Information on your n8n setup

  • n8n version: 1.92.2
  • Database: SQLite
  • n8n EXECUTIONS_PROCESS setting: default
  • Running n8n via: Docker
  • Operating system:

Pre-populated with query parameters, you can add parameters like ?date=2025-07-25 to the end of the production URL to hide values or trigger logic in your flow, but it doesn’t change the form’s actual public path.

Example:
https://my.domain.n8n.cloud/form/my-form?date=2025-07-25

This allows you to pass hidden data, but the base path remains the same.

That means the base path cannot be made dynamic. Right?