Dimitar Grigorov
Dimitar Grigorov

Reputation: 85

Implementing Event Grid in LogicApps for Sharepoint

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 :) enter image description here

Upvotes: 0

Views: 385

Answers (1)

SwethaKandikonda
SwethaKandikonda

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.

enter image description here

RESULTS:

RESULTS IN LOGIC APP

enter image description here

RESULTS IN SHAREPOINT

enter image description here

The same goes the other way i.e.. from SharePoint to Azure Blob Storage.

enter image description here

NOTE: Make sure you are mentioning the locations and the name of the blob right.

Upvotes: 1

Related Questions