Usage Of Decode URI In Power Automate

Introduction

In Power Automate, to return a normal URL from URL Safe Characters embedded encoded URI decodeUriComponent function is used.

Step 1

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

Usage of Decode URI in Power Automate

Step 2

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

Usage of Decode URI in Power Automate

Step 3

After step 2, provide the name as decodeUriComponent and then select Initialize variable as shown in the below figure.

Usage of Decode URI in Power Automate

Step 4

After step 3, give title as Initialize variable - Encoded Uri and provide,

Name - Encoded Uri

Type - String

Value - https%3A%2F%2Fvenkatasubbaraopolisetty.com%2F

And click on Save as shown in the below figure

Usage of Decode URI in Power Automate

Step 5

After step 4, take compose operation and name it as Compose – DecodeUriComponent and then under Inputs navigate to Expression Tab and then provide

decodeUriComponent(variables('Encoded Uri'))

and click on ok /update and then click on Save as shown in the below figure.

Note
Here variables('Encoded Uri')) is Initialize variable that is considered from Step 4.

Usage of Decode URI in Power Automate

Step 6

After step 5, Click on Test -> Test Flow (Manually) and then click on Save & Test as shown in the below figure,

Usage of Decode URI in Power Automate

Step 7

After Step 6, Run Flow and Click on Done and then below screen with flow run takes place and observe Encoded variable with Url safe characters are replaced and required URL is well-formed as shown in the below figure

Usage of Decode URI in Power Automate

Note

  1. Make sure to save and run the flow whenever you try expressions.
  2. MS documentation is found here.
  3. As an example encoded URI of my website URI is taken into consideration to provide a variable in Step 4, you can provide any other value of your choice.

Conclusion

In this way, one can easily generate a decoded version of a URI by replacing URL-safe characters.


Similar Articles