Skip to main content

updateUsers

Fires with the current list of online users in the room, whenever that list changes — for example when someone joins or leaves. The payload is an array of user objects, not a single user.

note

This is not a per-user profile-change notification. A user editing their own profile does not reach the SDK as an event.

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