How to restrict the topic for a specific portalIssue This document talks about how to restrict a topic to a specific portalReleaseAllCauseBy default, The topic is visible on every portal if the VA chat bot is configured on a portal and its the expected behaviourResolutionNavigate to the Designer > Open the topic that needs to be restricted.Open the Propertied tab as shown below and select the script in the condition fieldAs shown in the below image , write the piece of code that checks for vaContext.portal value as per your needs.I am attaching the piece of code thats been used in this example for reference. (function execute() { // consider using vaContext.liveagent_portal as well if(vaContext.portal == 'sp'){ return true; }else{ return false; } })() Related LinksPlease note that this would be considered as a customisation to the Out-Of-the-Box (OOB) behaviour of the Virtual Agent Topic.