I want to use logic apps for making the workflow. I'm aware that logic apps provide the HTTP Request (endpoint) as the trigger, which can be used in order to start the workflow of the logic app. But I want to perform some tasks such as CRUD operations with database for which azure functions are preferred.
I was thinking to call the logic apps from the azure functions to achieve my goal. Is that the correct approach?If yes, then how can I do so using node or python.
Or should I call the functions within the logic apps? If I am trying to do so, then it gives me some error (where n customization has been done) that file not found.
NotFound. System.IO.FileNotFoundException: Could not find file 'D:\home\site\wwwroot\azure-from-logic'. File name: 'D:\home\site\wwwroot\azure-from-logic' at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at ..
However, I was able to successfully call the logic apps from azure function in node. But, if above error can be resolved then it would be grateful. – christo-pher18