BlueJeans is being sunset. Please refer to more details

Hide Rating Screen


Applicable for  Desktop &  Mobile 

BlueJeans requests the users to rate their meeting experience on a scale of 1-star to 5-star. The Web Embed SDK has the option to hide the rating screen in your meeting experience. Usually, a rating screen is shown when the user ends the meeting. If your client does not want to see the rating screen in their environment, you can hide the rating screen by setting the"hideRatingScreen" flag with "true". 

hideRatingScreen is a Boolean property, by default, the rating screen is shown and the hideRatingScreen flag has been set to "false". 

Use the following code snippet to hide the rating screen.

BJNEmbedSDK.joinMeeting({
    "meetingInfo": {
           "meetingId": "Meeting ID",    
           "name": "Your Name",
           "passcode": "Passcode",  
      },
       "iFrameProps": {
           "width": "",
           "height": ""
       },
    "uiProps": {
        "hideRatingScreen": true
    }
})

The images above demonstrates an example of the default rating screen (left) and custom hide rating screen (right).