Search code examples
visual-studioazureazure-api-appsazure-logic-apps

How do I change the sequence of API Apps in an Azure Logic App


I have created an Azure Logic App containing a number of API Apps. I now have to add an API App in the processing between 2 previous API Apps similar to:

[HttpListener] -> [API App A]

needs to be changed to:

[HttpListener] -> [API App B] -> [API App A]

Is there any way of doing this without having to delete all API Apps after the insertion point, put in the new API App and the re-create the sequence of the following API Apps? Can I re-order an existing sequence of API Apps in a Logic App? Or, can I insert an API App at specific stage in the Logic App sequence of API Apps?


Solution

  • The new designer allow you to drag and drop actions, so one way to achieve this is, assuming you have httpListener --> APIAPP A

    1) Add the new action APIAPP B at the end. httpListener --> APIAPP A --> APIAPP B 2) Drag and drop the action to the position required httpListener --> APIAPP A --> APIAPP B

    I hope this helps, Wagner.