Skip to main content

Leave Chatroom

Leaving a chatroom with LM React Native Chat SDK allows you to exit a chatroom that you no longer want to be a part of.

Steps to Leave a Open Chatroom

  1. To leave a chatroom, use the method followChatroom().
  2. Pass in the required parameters collabcardId, uuid and value.
  3. Process the response as per your requirement.
// To leave a chatroom, set the value to false
const payload: any = {
collabcardId: 89899, // your chatroom id
value: true,
uuid: 23233, // member uuid
};
const response = await lmChatClient?.followChatroom(payload);

if (response.success) {
// Update followStatus to false in local db as well
await lmChatClient?.updateChatroomFollowStatus(chatroomId, false);
// your function to process the response data
processResponse(response);
} else {
// your function to process error message
processError(response);
}

Leave Chatroom Payload

List of parameters for the followChatroom() method.

VariableTypeDescriptionOptional
collabcardIdnumberChatroom Id
uuidstringMember Uuid✔️
valuebooleanFollow value

Leave Chatroom Response

List of parameters in the response.

VariableTypeDescription
successbooleanAPI success status
error_messagestringError message in case of failure

Steps to Leave a Secret Chatroom

  1. To leave a secret chatroom use the method leaveSecretChatroom().
  2. pass in the required parameter chatroomId and isSecret.
  3. Process the response as per your requirement.
const payload: any = {
chatroomId: 89899, // Your chatroom ID.
isSecret: true,
};
const response = await lmChatClient?.leaveSecretChatroom(payload);

if (response.success) {
// Update followStatus to false in local db as well
await lmChatClient?.updateChatroomFollowStatus(chatroomId, false);
// your function to process the response data
processResponse(response);
} else {
// your function to process error message
processError(response);
}

Leave Secret Chatroom Payload

List of parameters for the function leaveSecretChatroom.

VariableTypeDescriptionOptional
chatroomIdnumberChatroom Id
isSecretbooleanSet to true in case of secret chatroom✔️

Leave Secret Chatroom Response

List of parameters for the response.

VariableTypeDescription
successbooleanAPI success status
error_messagestringError message in case of failure