I am building an app for filling out a form. The form contains 50+ fields with most not required (data privacy reasons). I'm storing any fields actually filled out by User into a Collection to send up as JSON to a flow. I don't want to send out all 50+ fields, only the ones that actually get populated based on controls such as radio button selection or textbox entries.
How can I achieve the end result? Thanks!
Example:
User A -- Fills out first three questions so collection would be:
Collect(colMyForm,{col1: "Some Text", col2: "Some text", col3: "some text"})
User B -- Fills out questions 1, 2, and 5 (skipping over 3 and 4)
Collect(colMyForm,{col1: "Some Text", col2: "Some text", col5: "some text"})