Delete Group
To delete a group you need to use thedeleteGroup() method. The user must be an Admin of the group they are trying to delete.
- Java
- Kotlin
deleteGroup() method takes the following parameters:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
deleteGroup() method. The user must be an Admin of the group they are trying to delete.
private String GUID = "GUID";
CometChat.deleteGroup(GUID, new CometChat.CallbackListener<String>() {
@Override
public void onSuccess(String successMessage) {
Log.d(TAG, "Group deleted successfully: ");
}
@Override
public void onError(CometChatException e) {
Log.d(TAG, "Group delete failed with exception: " + e.getMessage());
}
});
val GUID:String="GUID"
CometChat.deleteGroup(GUID,object :CometChat.CallbackListener<String>(){
override fun onSuccess(p0: String?) {
Log.d(TAG, "Groups deleted successfully: ")
}
override fun onError(p0: CometChatException?) {
Log.d(TAG, "Group delete failed with exception: " +p0?.message)
}
})
deleteGroup() method takes the following parameters:
| Parameter | Description |
|---|---|
GUID | The GUID of the group you would like to delete |
Was this page helpful?