Hi @B Lavanya
You can use a client script to manipulate the url you wish to open
For example
var email = getControlValue("person", "email");
var url = 'https://www.mysite.com?email=' + email;
launchBrowser(url);
Cheers!
@B Lavanya you should make sure the target application has the feasibility of receiving the values as inputs, if so deeplinks can be used.
additionally to the launchBrowser, In the client scripts you can use the syntax launchURI
launchURI("msteams://teams.microsoft.com/l/call/0/0?users=someone@example.com");
Hi Cheshin,
I tried with some dummy url, but it’s not taking any input just redirecting to login page.
Am I missing something?
Thanks,
Lavanya
Hi @B Lavanya
I do not know the page you are trying to access, so it is hard to say.
But if the email is a parameter on the the URL this is the way to go.
Cheers!
Hi Cheshin,
I tried with some dummy url, but it’s not taking any input just redirecting to login page.
Am I missing something?
Thanks,
Lavanya
Hi Lavanya,
Have you tested the url in your local browser first with the same expected output? Looks like the problem is with your dummy url