Adds members to the allowlist of the chat room. Members added to the allowlist of the chat room will receive in onChatroomEvent callback operation: 'addUserToAllowlist'.
connection.addUsersToChatRoomAllowlist({chatRoomId: 'chatRoomId'})
The chat room ID.
The members to be added to the allowlist.
Adds a member to the chat room blocklist. Only the chat room owner or admin can call this method.
connection.blockChatRoomMember({chatRoomId: 'chatRoomId', username: 'user1'})
The chat room ID.
The member to be added to the blocklist.
Adds members to the chat room blocklist. Only the chat room owner or admin can call this method.
connection.blockChatRoomMembers({usernames: ['user1', 'user2'], chatRoomId: 'chatRoomId'})
The chat room ID.
The members to be added to the blocklist.
Creates a chat room.
connection.createChatRoom({name: 'myChatRoom', description: 'this is my chatroom', maxusers: 200, members: ['user1'], token: 'your token'})
The description of the chat room.
The maximum number of members in the chat room, including the chat room creator. The value is of integer type, 200 by default, and can not exceed 5,000.
(Optional) The members in the chat room. An array of user IDs. If you set this parameter, ensure that the array contains at least one user.
The chat room name.
The super admin token.
Deletes a shared file of the chat room.
connection.deleteChatRoomSharedFile({roomId: 'roomId', fileId: 'fileId'})
The shared file ID.
The chat room ID.
Destroys the chat room.
connection.destroyChatRoom({chatRoomId: 'chatRoomId', token: 'your token'})
The chat room ID
The super admin token.
Mutes all the members in the chat room. Only the chat room owner or admin can call this method.
connection.disableSendChatRoomMsg({chatRoomId: 'chatRoomId'})
The chat room ID.
Unmute all the members in the chat room. Only the chat room owner or admin can call this method.
connection.enableSendChatRoomMsg({chatRoomId: 'chatRoomId'})
The chat room ID.
Gets the announcement of the chat room.
connection.fetchChatRoomAnnouncement({roomId: 'roomId'})
The chat room ID.
Gets all admins of the chat room.
connection.getChatRoomAdmin({chatRoomId: 'chatRoomId'})
The chat room ID.
Gets the allowlist of the chat room. Only the chat room owner or admin can call this method.
connection.getChatRoomWhitelist({chatRoomId: 'chatRoomId'})
The chat room ID.
Gets the blocklist of the chat room.
connection.getChatRoomBlocklist({chatRoomId: 'chatRoomId'})
The chat room ID.
Gets specifications of the chat room.
connection.getChatRoomDetails({chatRoomId: 'chatRoomId'})
The chat room ID.
Gets all muted members in the chat room.
connection.getChatRoomMutelist({chatRoomId: 'chatRoomId'})
The chat room ID.
Gets a list of shared files in the chat room.
connection.getChatRoomSharedFilelist({roomId: 'roomId'})
The chat room ID
Gets the chat room list with pagination.
connection.getChatRooms({pagenum: 1, pagesize: 20})
The page number, starting from 1.
The number of records per page. The default value is 20.
Checks whether chat room members are on the allowlist. Only the chat room owner or admin can call this method. The chat room members can check themselves.
connection.isInChatRoomAllowlist({chatRoomId: 'chatRoomId', userName: 'user1'})
The chat room ID.
The member ID.
Joins the chat room. After a user joins successfully, other members in the chat room will receive operation: 'memberPresence' in the onChatroomEvent callback.
connection.joinChatRoom({roomId: 'roomId'})
The reason for joining the chat room. It is optional. It is only used for groups.
The chat room ID.
Exits the chat room. When a member exits the chat room, other members will receive "operation: 'memberAbsence'" in the callback of onChatroomEvent.
connection.leaveChatRoom({roomId: 'roomId'})
The chat room ID.
Lists all chat room members with pagination.
connection.listChatRoomMembers({pageNum: 1, pageSize: 20, chatRoomId: 'chatRoomId'})
The chat room ID.
The page number, starting from 1.
The number of members per page. The value cannot exceed 1,000.
Modifies the specifications of the chat room.
connection.modifyChatRoom({chatRoomId: 'chatRoomId', chatRoomName: 'chatRoomName', description: 'description', maxusers: 5000})
The chat room ID.
The chat room name.
The description of the chat room.
The maximum number of members in the chat room.
Mutes chat room member. Only the chat room owner can call this method. The muted member and other members will receive "operation:'muteMember'" in the callback of onChatroomEvent.
connection.muteChatRoomMember({username: 'user1', muteDuration: -1, chatRoomId: 'chatRoomId'})
The chat room ID.
The mute duration in milliseconds. The value -1 indicates that the member is muted permanently.
The member to be muted in the chat room.
Removes chat room admins. Only the chat room owner can call this method. The users whose admin privileges are removed will receive "operation: 'removeAdmin'" in the callback of onChatroomEvent.
connection.removeChatRoomAdmin({chatRoomId: 'chatRoomId', username: 'user1'})
The chat room ID.
The admins to be removed.
Removes members from the allowlist of the chat room. Only the chat room owner or admin can call this method. The users who are removed will receive "operation:'removeAllowlistMember'" in the callback of onChatroomEvent..
connection.removeChatRoomAllowlistMember({chatRoomId: 'chatRoomId', userName: 'user1'})
The chat room ID.
The members to be removed from the allowlist.
Removes a chat room member.
connection.removeChatRoomMember({chatRoomId: 'chatRoomId', username: 'username'})
The chat room ID.
The member to be removed.
Sets a user as chat room admin. Only the chat room owner can call this method. The members who are set as admins will receive "operation: 'setAdmin'" in the callback of onChatroomEvent.
connection.setChatRoomAdmin({chatRoomId: 'chatRoomId', username: 'user1'})
The chat room ID.
The members to be set as admin.
Removes a member from the chat room blocklist. Only the chat room owner or admin can call this method.
connection.unblockChatRoomMember({chatRoomId: 'chatRoomId', username: 'user1'})
The chat room ID.
The member to be removed from the blocklist.
Removes members from the chat room blocklist. Only the chat room owner or admin can call this method.
connection.unblockChatRoomMembers({chatRoomId: 'chatRoomId', usernames: ['user1', 'user2']})
The chat room ID.
The array of members to be removed from the blocklist.
Unmute the chat room member. Only the chat room owner can call this method. The members who are muted and others will receive "operation: 'unmuteMember'" in the callback of onChatroomEvent.
connection.unmuteChatRoomMember({chatRoomId: 'chatRoomId', username: 'user1'})
The chat room ID.
The member to be unmuted.
Updates the announcement of the chat room.
connection.updateChatRoomAnnouncement({roomId: 'roomId', announcement: 'hello'})
The announcement content.
The chat room ID.
Uploads a shared file to the chat room.
connection.uploadChatRoomSharedFile({roomId: 'roomId', file: 'file object', onFileUploadProgress: onFileUploadProgress, onFileUploadComplete: onFileUploadComplete,onFileUploadError:onFileUploadError,onFileUploadCanceled:onFileUploadCanceled})
The shared file object to upload.
The chat room ID.
The upload cancellation callback.
The upload completion callback.
The upload failure callback.
The upload progress callback.
Chatroom contains APIs for chatroom-related operations.