Insert the contents of an input field directly into a json structure

Hey guys,

how to insert the contents of an input field directly into a json structure, for example, {“data”: {“property”: Input field value 1 }}

If that structure is the call itself is being passed as a formula, you would do the following:

  1. Make the input field.
  2. Tie it to a variable (type of your choice).
  3. Place the variable in the formula for the structure (I use an app variable called stuff below).
  4. Pay attention to formatting. Sometimes when you’re setting this up as a formula you need to encapsulate certain parts in double quotes to show its text. In the first example below I use your exact example and in the second I show a formula with double quotes that would include your app variable and concatinate it.

{“data”: {“property”: appVars.stuff }}

Or

"{‘data’: {‘property’: " + appVars.stuff + “}}”

I have a video about this, what you are looking to do is around the 10:50 mark: Add Workflow Automation In Your Appgyver App (SAP Build Apps) With Make.com - YouTube