Quick Reference - Create a group:
Create a Group
In other words, as a logged-in user, how do I create a public, private or password-protected group? You can create a group usingcreateGroup() method. This method takes a Group object as input.
To create an object of Group class, you can use either of the below two constructors:
new Group(String GUID, String name, String groupType, String password)new Group(String GUID, String name, String groupType, String password, String icon, String description)
groupType needs to be either of the below 3 values:
1.CometChat.GROUP_TYPE.PUBLIC
2.CometChat.GROUP_TYPE.PASSWORD
3.CometChat.GROUP_TYPE.PRIVATE
- JavaScript
- TypeScript
Response
Response
On Success —
createGroup() returns the created Group object:Group Object:
After successful creation of the group, you will receive an instance of
Group class which contains all the information about the particular group.
Add members while creating a group
You can create a group and add members at the same time using thecreateGroupWithMembers() method. This method takes the Group Object, Array of Group Member Object to be added & Array of UIDs to be banned.
To create an object of Group class, you can use either of the below two constructors:
new Group(String GUID, String name, String groupType, String password)new Group(String GUID, String name, String groupType, String password, String icon, String description)
groupType needs to be either of the below 3 values:
CometChat.GROUP_TYPE.PUBLICCometChat.GROUP_TYPE.PASSWORDCometChat.GROUP_TYPE.PRIVATE
Group Member class, you can use the below constructor:
- new CometChat.GroupMember(String UID, String scope)
- JavaScript
- TypeScript
Response
Response
On Success —
createGroupWithMembers() returns an object with group and members keys:Response Object:group Object:members Object:Each key is a UID, and the value is either
"success" or an error message describing why the operation failed.group & members . The group key has the Group Object which contains all the information of the group which is created. The members key has the UID of the users and the value will either be success or an error message describing why the operation to add/ban the user failed.
Group Class
Best Practices
Use createGroupWithMembers for initial setup
Use createGroupWithMembers for initial setup
If you know the initial members at creation time, use
createGroupWithMembers() instead of creating the group first and then adding members separately. This reduces API calls and ensures atomic group setup.Keep GUIDs consistent with your system
Keep GUIDs consistent with your system
Use the same group identifier from your backend as the CometChat GUID. This simplifies mapping between your system and CometChat.
Check member add results individually
Check member add results individually
The
createGroupWithMembers() response includes per-UID results (“success” or error). Check each result rather than assuming all members were added successfully.Troubleshooting
createGroup fails with 'GUID already exists'
createGroup fails with 'GUID already exists'
Each GUID must be unique across your CometChat app. If the group already exists, use a different GUID or retrieve the existing group with
getGroup().GUID validation error
GUID validation error
GUIDs can only contain alphanumeric characters, underscores, and hyphens. Spaces, punctuation, and other special characters are not allowed. Uppercase characters are automatically converted to lowercase.
Members not added during createGroupWithMembers
Members not added during createGroupWithMembers
Check the
members key in the response object for per-UID error messages. Common causes include invalid UIDs or users that don’t exist in your CometChat app.Next Steps
Retrieve Groups
Fetch group lists, search groups, and get group details
Join a Group
Join public or password-protected groups
Group Members
Manage members, roles, and permissions within groups
Send Messages
Send text, media, and custom messages to groups