2
votes

I am sumitting a form to azure logic app using post requets. The form is having two paramaeters 1. FileName 2. FileContent

but I am unable to access these parameters in other actions of logic apps. Is there any such example then please share the link? How to write JSON Schema for such request in Azure logic apps?

1

1 Answers

1
votes

You can use the function @triggerFormDataValue() to get form data values, e.g. @triggerFormDataValue('FileName') and @triggerFormDataValue('FileContent')

More information here.

HTH