For the complete documentation index, see llms.txt. This page is also available as Markdown.

Set Up Web Chat

Web chat is in Preview.

Setup Web Chat

  1. Choose where you want to host your chat widget.

  2. Select the chat link created in Set Up Chat Link | Edit

  3. Use the code supplied in the Widget Information block to implement web chat on your website or see example customizations below.

<div id="chat-container"></div>
<script>
    var landisChatConfig = {
        titleText: "Custom Chat Title",
        privacyPolicyUrl: "ADD_PRIVACY_POLICY_URL_HERE",
        privacyConsentText: "By using this chat, you agree to our {Privacy Policy}.",
        privacyConsentRequired: true,
        privacyDisclaimerText: "By using this chat, you agree to our {Privacy Policy}.",
        nameFieldRequired: true,
        emailFieldRequired: true,
        loaderDelay: 0, // Delay in milliseconds before loading the chat widget
        customStyles: {
            brandColor: "#b23a03",
            textColor: "#e8713a",
            backgroundColor: "#fff",
            buttonBottomPosition: "2rem",
            buttonRightPosition: "2rem",
            buttonSize: "4rem"
        }
    };
</script>
<script src="https://eastus.static.landis.cloud/contactcenter/chat/landischatwidget-latest.js"
    widgetId="00000000-0000-0000-0000-000000000000" widgetPass="00000000-0000-0000-0000-000000000000"></script>

Last updated

Was this helpful?