Automate business processes with Logic Apps Part 2 – Implement a workflow using Logic Apps
1 min read

Automate business processes with Logic Apps Part 2 – Implement a workflow using Logic Apps

Now let’s first create a fileshare and upload some files from the starter folder.

az storage share create --name metadata --quota 1  --account-name az204lab09storage

Next use storage explorer to upload some files.

Now lets create the workflow.

In your Logic App create a blank template with the trigger http request and the method get.

Next create an action that queries your new storage account for files inside your fileshare.

Now create a Data operation and create an operation that lists the files. Remember to select to switch to text mode.

Finally create an operation for request (reponse) and add the output from the data operation.

Now run your Logic App and watch the app display your uploaded files!

Perfect! Now in the final post we will add this Logic App HTTP trigger to your API Management and request the trigger.

Leave a Reply