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
Properties | Description | Type |
---|---|---|
error | Room limit reached | String |
message | Room 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."
}