How trigger a MS flow from an application in JavaScript/jQuery?
Trigger a MS Flow Using Jquery/JavaScript: To trigger an MS Flow first we need to create an workflow. Next we need to obtain its URL for triggering it. In below example, we are starting a workflow which is taking email address, email subject and email body as parameter and sending mail to email of related user. //This function triggers the microsoft flow function startMSFlow() { var httpPostUrl = "obtain URL from MS flow"; var postData = { emailadress:'raju@testdev.com', // Object keys must be similar as you used in the MS flow emailSubject:'Testing Raju', emailBody:'Hello User\n Welcome, You just trigger a MS Flow' }; $.ajax({ url: httpPostUrl, ...