In a UI form, I've a button 'Launch' which has integration to an external system. The result of integration is an URL with a one time password from the external system. I required to action on the generated URL without user interaction (it should be like someone clicking on the URL to open the webpage or redirecting the URL to open the webpage). Is there a way we can achieve this?
Discussion posts and replies are publicly visible
Hi ashoku
Instead of a button, can you use a link?
You can try calling the external system in a rule which has the output of the url and use that in the safelink.
Hi Ankita,
We can use either button or link to trigger integration which generates the URL. But to trigger that URL we still need to click on the safelink, which is like additional interaction for the user which I'm trying to avoid.
What I am saying is the output of the integration rule is the url which is passed in the safe link like this. This will work both for triggering the integration and calling the web page.
a!linkField( label:"Launch", links:a!safeLink( label:"", uri:"call the integration rule which returns the url" ) )
Thanks Ankita.
I think that worked for my req.
Cheers