Virtual Agent topics are not visible in MS Team/Slack/Facebook/MessengerDescriptionWhen you try to run a topic on MS Team/Slack/Facebook/Messenger, the topic will not start. You would get an error - I'm not ready for any requests yet (For MS Teams) or a similar error depending on the application you are using. But when you try to run the same topic from the portal or using the $sn-va-web-client-app.do URL, the topic works as expected.Release or EnvironmentAll supported versionsInstructionsOpen the VA topic and check for the condition defined. Check if the condition defined is similar to the one mentioned below: (function execute() {if(!vaContext.portal) { return false;}if(vaContext.portal == 'ITServices'){ return true;}})() Resolution: Change the condition as below: (function execute() {if(vaContext.portal == 'ITServices' || vaContext.deviceType === 'teams'){ return true;}})() Additional InformationIn the above script, the line -> (!vaContext.portal) means that the topic will not be visible in the current context is not portal. Therefore it will not run on any other device as well. You can also refer to the product documentation here - Control topic visibility in Virtual Agent messaging channels & knowledge article - Control visibility of Virtual Agent topics by messaging channel