Reputation: 123
I have XML data in my POST Request which needs to perform some mapping based on C# code. It's basically reading the XML data and performs some updates on certain fields while using multiple C# code methods. Approximately 3 methods with 300 lines of code. How can I do this in Logic Apps?
Upvotes: 2
Views: 4261
Reputation: 1
Inline C# Script is available in Logic Apps (Standard) now. https://learn.microsoft.com/en-us/azure/logic-apps/add-run-csharp-scripts
Upvotes: 0
Reputation: 1394
You can do this by invoking azure functions from your logic apps. See here : https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-azure-functions
Upvotes: 2