Groups
React native groups
Creating a group:
Create a group using the below function:
var groupDetails = {
'groupName':'React Test3',
'clientGroupId':'recatNativeCGI',
'groupMemberList': ['ak101', 'ak102', 'ak103'], // Pass list of user Ids in groupMemberList
'imageUrl': 'https://www.applozic.com/favicon.ico',
'type' : 2, //'type' : 1, //(required) 1:private, 2:public, 5:broadcast,7:GroupofTwo
'metadata' : {
'key1' : 'value1',
'key2' : 'value2'
}
};
ApplozicChat.createGroup(groupDetails, (error, response) => {
if(error){
console.log(error)
}else{
console.log(response);
}
});
Note
The 'type' parameter defines the type of the group. There are different types of groups available. Learn more about them here.
Updated 9 months ago
Did this page help you?