Suraj Revankar
Suraj Revankar

Reputation: 135

Azure logic apps : Setting Workflow name dynamically to call a existing logic app(Nested Logic app)

Is there any way where we can update the workflows dynamically while calling a Child logic app as:

enter image description here

Upvotes: 2

Views: 2031

Answers (1)

DixitArora-MSFT
DixitArora-MSFT

Reputation: 1811

Unfortunately, this isn't supported. There is a feature request which I believe will address this as well that you could up vote for it to gain more traction.

As for a workaround, instead of using the Workflow Action, you could simply use the HTTP Action to trigger your other Logic Apps.

You can use the Workflows - List Callback Url ARM REST API to fetch the URL of your Logic App to call. Using Managed Identity, you can securely fetch the Trigger URLs from ARM and dynamically call other Logic Apps.

Upvotes: 4

Related Questions