Rahul Chavan
Rahul Chavan

Reputation: 137

Azure logic apps using post call submitting form data

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?

Upvotes: 2

Views: 2195

Answers (1)

Paco de la Cruz
Paco de la Cruz

Reputation: 2154

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

More information here.

HTH

Upvotes: 1

Related Questions