Upload file to SharePoint using MS Flow endpoint
In my previous article we saw how to Upload attachment to SharePoint list item using Microsoft Flow, as a continuation will upload attachment using JavaScript(ajax) with MSFlow endpoint.
First, Open your flow and copy the endpoint url from 'HTTP request trigger'.

Append listname & itemid in the URL

Finally, Test it

Detailed steps

Check out previous series for reference. I recommend reading the PowerApps scratch development series, Azure Function integration with PowerApps and What is Microsoft Flow.
-Ratsub
First, Open your flow and copy the endpoint url from 'HTTP request trigger'.
Append listname & itemid in the URL
Finally, Test it
Detailed steps

Trigger MSFlow to upload document using ajax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Upload Attachment to SharePoint ListItem via MSFlow Trigger - Using Ajax</title> | |
<script src="jquery.js"></script> | |
</head> | |
<body> | |
<input type="file" name="" id="files"> | |
<input type="button" value="Upload" onclick="uploadFile()"> | |
<script> | |
// MS Flow HTTP Endpoint | |
var _url = "https://prod-13.centralindia.logic.azure.com:443/workflows/5178df155049ratsub4ab1a0bb136c75c38a2d/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=pE7ydsT-0sGAxl4Q0tmUrza-R_S7X75yADXlnowK-wA" + | |
"&listname=Expense List" + // You know the Drill! | |
"&itemid=5"; // Same here | |
// Trigger MSFlow Endpoint | |
function uploadFile() { | |
// Payload | |
var fd = new FormData(); | |
fd.append('file', document.getElementById('files').files[0]); | |
$.ajax({ | |
url: _url, | |
data: fd, | |
processData: false, | |
contentType: false, | |
type: 'POST', | |
success: function (data) { | |
alert('File Upload Successfully!'); | |
} | |
}); | |
} | |
</script> | |
</body> | |
</html> |
-Ratsub
Hello, thanks for posting this. I have question here. After you have added HTTP request received trigger did you add any action like create item in sharepoint?
ReplyDelete