BlueJeans is being sunset. Please refer to more details

Text Customization


The Web Embed SDK with telehealth gives you the ability to customize the welcome message shown on the landing screen as well as the entertainment screen message. Similarly, you will also have the option to customize the provider’s name and title for a televisit.

Welcome Message:

The welcome message is shown on the landing screen of the PLE. You have the option to customize this welcome text according to your preference. By default, this is the welcome message that will be shown as "Welcome! To get your visit started, please proceed through the check-in process.”
Use the following code snippet to customize the welcome message.

"uiProps": {
        "teleHealthConfig": {
            "welcomeText": "Hi!!",
        }
}
})

The image above demonstrates an example of the default welcome message (left) and custom welcome message (right).

Entertainment Screen Message

The entertainment screen message is visible on the entertainment screen of the patient landing experience. You have the option to customize this entertainment screen message according to your preference. By default, this is the message that will be shown as “Check-in Completed, Please Wait”. 

Use the following code snippet to customize the entertainment screen message

    "uiProps": {
            "teleHealthConfig": {
            "waitingText": "Loading..."
        }
}

The image above demonstrates an example of the default entertainment message (left) and custom entertainment message (right).

Provider Name

The provider name will be visible on all screens of the Patient Landing Experience. By default, if not designated, the provider name will be shown as “Health Provider”. 

Use the following code snippet to add a provider name to a televisit.

    "uiProps": {
            "teleHealthConfig": {
            "providerName": "Provider Name",
        }
}

The image above demonstrates the location of the provider name on the patient landing experience when added.

Provider Title

The provider title will be visible on all screens of the Patient Landing Experience. By default, if not designated, there will be no provider title shown. 

Use the following code snippet to add a provider title to a televisit.

    "uiProps": {
            "teleHealthConfig": {
            "providerTitle": "PROVIDER TITLE",
        }
}

The image above demonstrates the location of the provider title on the patient landing experience when added.