Understand UnBound Action In Power Automate

Introduction

During certain scenarios, it is necessary to call Unbound action. To call an unbound action we can do it with javascript, plugins, and power automate. In all the other methods except power automate you have to write explicit logic to call an unbound action. As an example, we call a generic unbound action from power automate.

Step 1

Login to the required Power Apps environment using URL make.powerapps.com by providing username and password and click on Flows on the left-hand side as shown in the below figure.

Understand UnBound Action in Power Automate

Step 2

After Step 1, Click on New Flow and select instant cloud flow and provide the trigger as Manually trigger a flow and click on Create as shown in the below figure.

Understand UnBound Action in Power Automate

Step 3

After Step 2, you have to build an unbound action with input and output arguments of string type as shown in the below figure.

Understand UnBound Action in Power Automate

Step 4

After Step 3, make sure to use Assign value Step and then on click of properties button, a popup will open there, provide the value for outputName by providing full name of the contact and activate action after closing popup as shown in the below figure.

Understand UnBound Action in Power Automate

Step 5

After Step 4, go back to the flow screen which we have created in step 2 and name the flow as Understand UnBound Action, and under actions select perform an unbound action as shown in the below figure.

Understand UnBound Action in Power Automate

Step 6

After Step 5, under perform an unbound action provide the following inputs

Action Name : new_genericaction
InputArgument : Input Argument [ Can provide any string value / text]

as shown in the below figure.

Understand UnBound Action in Power Automate Figure 6

Step 7

After Step 6, take compose action and select outputArgument as an input

Inputs : @{outputs('Perform_an_unbound_action')?['body/OutputArgument']}

as shown in the below figure.

Understand UnBound Action in Power Automate

Step 8

After Step 7, save and test the flow and observe output as shown in the below figure.

Understand UnBound Action in Power Automate Figure 8

Note

  1. If you don’t see the output name in the result JSON, then the issue was in the unbound action you have not assigned any value to output Name.
  2. Make sure to publish all customizations of the solution where unbound action was created.
  3. Microsoft Documentation found here.

Conclusion

In this way, we can call unbound action from power automate without writing explicit code.


Similar Articles