I’m working on a form that’s launched through the launchpad then takes the inputs from the original form to input into a secondary form in a workflow. One of these inputs is an array (example below). I have no issues with String inputs as I can reference them inside the form via a “formdata” variable, but for array inputs, it requires an extra “Array Value” & “Array Label” . I’ve tried a few different types of inputs like 0 or 1 and placing text as well, but I repeatably get the error below. Can someone advise on what needs to be put into these two fields?
Array:
[“TestWritePermission”, “TestViewPermission”]
JSON:
“entitlementsREQ”: [
“TestWritePermission”,
“TestViewPermission”
]
Error:
{“displayName”:“Form”,“error”:“Unexpected Error: unable to find value to use for value field in item at index 0 with jsonpath expression ‘entitlementsREQ’, item: ‘map’”,“stepName”:“form”,“task”:“sp:forms”,“technicalName”:“Form”}

