Reputation: 85
I have a process in LogicApps for ingesting a data from ADLS to Sharepoint storage, my question is how can I use event based trigger for process execution, also is there a way to use event based trigger from Sharepoint to LogicApps :)
Upvotes: 0
Views: 385
Reputation: 8234
Below is one of the ways that you can achieve your requirement. In this case, you can use When a blob is added or modified (properties only) (V2)
trigger to trigger the flow if there is any change that happened in storage. Then I'm getting the details and its content using Get blob content (V2)
and finally I'm updating the file in SharePoint using Update file
.
RESULTS:
RESULTS IN LOGIC APP
RESULTS IN SHAREPOINT
The same goes the other way i.e.. from SharePoint to Azure Blob Storage.
NOTE: Make sure you are mentioning the locations and the name of the blob right.
Upvotes: 1