Can get password activity encrypt a securestring variable and return the output in string format
Hello @sowmiya.anbalagan ,
Use an assign activity and try this:
new System.Net.NetworkCredential(string.Empty, secureStr).Password
Here secureStr contains the securestring variable you got.
Thanks!
Athira