Skip to main content

roomLimitReached

When the chat plan capacity limit is reached and a user tries to enter the chat this event is triggered.

JavaScript
frame1.on("room_limit_reached", (message) => {
console.log("room_limit_reached", message);
});

Properties

PropertiesDescriptionType
errorRoom limit reachedString
messageRoom limit is reached, please upgrade the plan to allow more users.String
JSON Sample Response
{
"error": "room_limit_reached",
"message": "Room limit is reached, please upgrade the plan to allow more users."
}