Create bot messages

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 2분
  • Create channel-specific bot messages.

    시작하기 전에

    Role required: admin

    프로시저

    1. Navigate to All > Conversational Interfaces > Channel Integrations > Connections and select a connection.
    2. In the Provider Channel Identity tab, select a provider channel identity.
    3. Select New in the Bot Messages table.
    4. In the form, fill in the fields.
      표 1. Bot Messages Form
      Field Description
      Name Name of your bot message
      Value Text displayed when a bot message is triggered
      Description Description of the bot message, such as Welcome message or Instructional message for image upload
      Message Type Default selection is Bot Message
      Provider Channel Identity Select the Provider Channel Identity
    5. Select Submit.

    Bot message implementation

    Use the bot messages API to implement channel-specific bot messages.

    Bot message API

    Use the following API to incorporate bot messages into your custom chat integration.

    Example: Bot message implementation
    function getBotMessage(providerId, inboundId, botMessageName) {
        // fetch the bot message using bot messages api
        var botMessages = sn_cs.VASystemObject.getAllBotMessages(providerId, inboundId);
        if (botMessages && botMessages[botMessageName]) {
            var botMessage = botMessages[botMessageName];
            botMessage = botMessage.trim();
            if (botMessage) {
                return botMessage;
            }
        }
    }