I have a RepeatingGroup in my app which has an Input form, how would I be able to access the input’s value in a workflow and save it in the database? In case you’re wondering, I’m building an Application System and the RepeatingGroup searches for a data type called Questions.
There are a couple of ways you can do this but roughly 2 main methods depending on your use case.
The simplest will be to add the input in the cell together with a button for example. When you click the button a new workflow starts that creates a new thing. You can save the current cell’s content but you can also save the input field that you put in the cell. Just reference ‘input X’ when you look for the value in the action like so:
Another solution would be to store all the inputs in a custom state and then run an API workflow to create a list of things in one go but this is a little more complicated and requires a paid plan. There is plenty of info on this when you search the forum.
Thanks, I’ll check it out. @vinvent56’s solution is working now though. I don’t want to get into APIs as that requires a paid plan and this isn’t my app, I’m doing it for someone else.