I have some input form with some data and after pressong Submit button some loop flow is happening. Now I have request to use this imput data and flow on some time trigger. Means user fill data and set time when should start. I know that this can be done in Automation. So my question is can I copy this flow which is pretty long an complex, to Automation somehow?
In theory, any action can be moved to Automations. But there are some limitations, as Automations are run on the server (unlike Actions, which are run on the client):
Interval, State and Local Storage steps are not available in Automations
UI variables (like {{ui.form.value}}) are not accessible from Automations, so you need to pass them via Webhook Params or some sort of database.
Automations can be run via Webhook or cron. You can use Webhook as an HTTP API data source in your app, but cron canβt be configured dynamically or programmatically β you need to set the value via UI.