Reputation: 2282
We are doing implementation of Logic App in our application. We have tried out the logic apps from azure portal and it is working alright. Due to business requirement we need to have capability to logic app using API. After much search in documentation I was not able to find on how to create logic apps using API. How can I do it?
Upvotes: 0
Views: 499
Reputation: 3227
Depends on what your needs are for an API. From a basic standpoint Logic Apps can be created as part of the Azure Resource Management APIs which is used to script or create any Azure resource from an API call.
There is also the Logic Apps SDK which is an extension of the resource management and gives you access to things like "create new", "disable", "enable", etc. Similar story with PowerShell.
Do any of these work for your business requirements?
Upvotes: 1