Skip to main content

Group business overview

Group chat is a common multi-user communication method in instant messaging apps, typically involving two or more users. RC’s group business supports rich group member management, mute management, offline message push, and historical message roaming. It’s ideal for interest groups, work groups, and customer service communication.

Key points of group business:

  • The instant messaging service only delivers messages to all group members. It doesn’t maintain group member profiles (avatars, names, member cards, etc.) by default. If you need to host group and member profiles on RC, enable the service in the developer console under IM Service - Information Hosting Service - Feature Settings to use the provided group management features.
  • Without RC’s information hosting service, group management operations like creating, disbanding, joining, or leaving a group must be performed via the App server using RC’s server API. The instant messaging client SDK doesn’t provide these methods. See Group Management Features below.
  • RC’s information hosting service offers new group management capabilities, supporting both server API and client SDK for group management.
  • There’s no limit to the number of groups that can be created under an App Key, with a maximum of 3000 members per group.
  • Individual users can join an unlimited number of groups.
  • Enable Cloud Storage for One-to-One and Group Messages from the console’s Chat pricing plans page to use RC’s message storage service for message history roaming. Available for IM Premium Plan or IM Ultimate Plan. For details on features and pricing, refer to the Billing Documentation.

Service configuration

Some basic and premium features of the group business can be enabled and configured in the console’s Basic Features and Chat pricing plans pages. To host group and member profiles on RC, enable the service in the developer console under IM Service - Information Hosting Service - Feature Settings.

Client SDK notes

tip
  • Only Global IM UIKit provides out-of-the-box group chat UI components. IMLib doesn’t provide these components. Global IM UIKit relies on IMLib, so it inherits all IMLib capabilities.
  • Groups created via the information hosting service support group management through the client SDK, available from SDK version 5.12.0.
  • For groups not created via the information hosting service, the client SDK doesn’t provide group management APIs. Group management must be handled by the App server using RC’s server API (Server API). Alternatively, you can import existing groups into the information hosting service via the server API to enable client SDK group management.

Group management features

By default, RC doesn’t host user information or manage group business logic, so all group business logic must be implemented on the App server. Without RC’s information hosting service, features like group owner, admin, announcements, invitations, and group ID search are part of the group business logic and must be implemented on the App side. If you want to host group and member profiles on RC, enable user information hosting.

tip
  • When using the information hosting service, group members receive operation status notifications (e.g., group creation, joining, invitations, removals, exits, disbanding, adding/removing admins, transferring ownership) via messages, which count toward group message distribution and downstream data statistics.
  • For groups created without hosting, you must call the “Import Group Hosting Data” API to set the group owner and default permissions before using group hosting features.

The table below lists the non-hosted group management APIs provided by the instant messaging server. Note that group management must be handled by the App server using RC’s server API (Server API). After enabling the information hosting service, the client SDK can provide management APIs for hosted groups.

Feature categoryDescriptionRC Server API
Create, disband groupsProvide the creator’s user ID, group ID, and group name to request group creation from RC. Disbanding a group removes all member relationships.Create Group, Disband Group
Join, leave groupsAfter joining a group, members can view new messages sent after joining. Leaving a group stops receiving new messages from the group.Join Group, Quit Group
Modify group informationModify group information used in RC’s push service.Refresh Group Information
Query group membersQuery the user IDs of all members in a specified group.Query Group Members
Query user’s groupsQuery all groups a user has joined based on their user ID, returning group IDs and names. RC doesn’t store group profile information, so group profiles and member information must be maintained on the App server. Use this API to verify discrepancies.Query User’s Groups
Sync user’s groupsSync all groups a user has joined with RC to ensure consistency. If your App server already has group and member data before integrating RC, use this API to sync existing user-group relationships.Sync User’s Groups
Mute a userMute one or more users in a specified group or all groups. Muted users can receive and view group messages but can’t send messages via the client SDK.Mute a User
Mute allMute all members in a group. Muted group members can’t send messages. To allow certain users to send messages, add them to the group’s mute whitelist.Mute All
Mute whitelistUsers in the mute whitelist can send messages in a muted group.Mute Exceptions

Group message features

Group message features are similar to one-to-one chat, sharing some APIs and configurations.

FeatureDescriptionClient APIRC Server API
Send messageSend text, images, GIFs, or custom messages. Supports @ mentions when sending messages.Send MessageSend Group Message
Send targeted messageSend messages to specified group members. Other members won’t receive the message.Send Group Targeted MessageSend Group Targeted Message
Receive messageListen and receive messages in real-time or receive offline messages when the client is online.Receive MessageN/A
Read receiptSend a read receipt request to track message read status.One-to-One and Group Read ReceiptN/A
Offline messagesStore offline messages for 1-7 days by default. Adjust storage duration and message count.Manage Offline Message StorageN/A
Offline message pushReceive push notifications for new group messages when offline.APNs Push Development GuideN/A
Recall messageRecall a sent message.Recall MessageRecall Message
Local message searchSearch local messages by keyword or user in specified conversations.Search MessagesN/A
Get history messagesRetrieve historical messages from the local database or remote server. Requires Cloud Storage for One-to-One and Group Messages, with a default storage duration of 6 months.Get History MessagesN/A
Get history message logsRC’s server stores all historical message records as compressed log files. Use the server API to retrieve or delete logs for a specified app.N/AGet History Message Logs
Local message insertionInsert messages into the local database. Locally inserted messages aren’t sent to the server or recipient.Insert MessageN/A
Delete messagesDelete specific messages or all historical messages in a conversation, both locally and on the server.Delete MessagesMessage Deletion
Message extensionAdd status identifiers (key-value pairs) to original messages. Provides interfaces to add, delete, and query extension information.Message ExtensionOne-to-One and Group Message Extension
Custom message typeCreate custom message types if built-in types don’t meet your needs. Supports custom text and media message types.Custom Message TypeN/A

By default, new group members can only receive messages sent after they join. To view pre-join historical messages, enable the following services for your App Key (note the difference between development and production environments):

  1. Enable Cloud Storage for One-to-One and Group Messages from the console’s Chat pricing plans page. This allows you to use RC’s message storage service for message history roaming. Available for IM Premium Plan or IM Ultimate Plan. For details on features and pricing, refer to the Billing Documentation.
  2. Enable New User Access to Pre-Join History Messages from the console’s Basic Features page.

Group conversation features

Group conversation features are similar to one-to-one chat, sharing some APIs and configurations.

FeatureDescriptionClient APIRC Server API
Get conversationsThe SDK generates conversations in the local database based on sent and received messages. Retrieve the conversation list from the local database.Get ConversationsN/A
Get unread messagesRetrieve unread messages from a specified conversation. Useful for jumping to the first unread message or displaying all unread @ messages.Get Unread Messages in ConversationN/A
Handle unread message countGet or clear the unread message count in a conversation for UI display.Handle Unread Message Count in ConversationN/A
Delete conversationsDelete one or more conversations from the SDK-generated conversation list.Delete ConversationsN/A
Conversation draftSave a draft to a specified conversation.Conversation DraftN/A
Typing statusSet whether to receive reminders for new messages in a specified group conversation. Default is enabled.Typing StatusN/A
Manage conversation tagsCreate and manage tag information data to label and group conversations. Each user can create up to 20 tags. Tag information data created by app users is synced to RC’s server.Manage Tag Information DataN/A
Set and use conversation tagsUse conversation tags to group conversations.Set and Use Conversation TagsN/A
Conversation pin to topPin a specified conversation to the top of the conversation list.Conversation Pin to TopConversation Pin to Top
Conversation Do Not DisturbControl whether users receive push notifications for offline messages when their client device is offline. Supports setting Do Not Disturb by conversation or conversation type.Do Not Disturb OverviewDo Not Disturb Overview
Multi-device sync of Do Not Disturb/Pin to Top statusThe SDK provides a synchronization mechanism for conversation status (pin to top or Do Not Disturb). Set a conversation status sync listener to monitor changes in real-time when modified on other devices.Multi-Device Synchronization of Do Not Disturb/Pin to TopN/A
Multi-device sync of read statusActively sync conversation read status across multiple devices under the same user account.Multi-Device Synchronization of Read StatusN/A

Differences between chatrooms and ultra groups

Learn about the differences and features of these business types: