Add URL in an option in Virtual Agent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2020 05:45 AM
Hi,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2020 06:35 AM
Hi there,
You could have an option to open a URL in a new page, though not to redirect.
So redirecting like your mentioning, not possible.
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2020 10:00 PM
Hi Mark,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2020 04:10 AM
Hi Mark,
Kindly help with this.
Regards,
Sarabjeet

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2020 06:11 AM
Hi Sarabjeet,
One idea could be to use a HTML bot response with a couple of buttons. When the users click in the button, they get redirected to your desired URL in a new browser tab.
This is a very basic example:
The HTML code for the above is the following:
<html>
<body>
<p>Please select one of the following two URLs to get redirected: <p>
<a href="https://URL1.com" target="_blank"><button> URL1 </button></a><br>
<a href="https://URL2.com" target="_blank"><button> URL2 </button></a>
</body>
</html>
It would be recommended to apply some style to those buttons to accommodate the format to your VA branding style.
KR