Hey there,
I’m trying to create a workflow that does the following:
- get 1-2 text fields of user input
- manipulate the data (web search, calculations, etc. )
- display the intermediate result to the user, the user should be able decide what to do next (A or B)
- do A or B
I’m using a Form Trigger for 1, and 2 works fine.
I’m stuck on 3. (display information to a user). Somewhat similar to this thread (unsolved imho).
The data I would like to display is a table with ~10 rows and a paragraph of text that contains some links, so I would like to display html/ markdown.
I tried:
(a) the form node, but it seems that the custom html needs to be static / does not resolve java script expressions. (I manage to display custom text in the name of a form field, but this is text only and does not display links)
(b) another option would be the webhook node (set the initial form trigger to respond webhook, and serve a full html page) but I’m at a loss how to process user input with this approach. I could add links to my HTML page pointing to further webhook triggers, but then I don’t think I can access the data from the first part of the flow in the flows that are started.
I’m pretty sure there is something obvious on how to use the toolkit that I’m missing?
Thanks for your help