Skip to main content

Message Types Overview

The IM service offers a rich set of predefined message types (or "built-in message types") to simplify the development of instant messaging applications and enhance development efficiency.

A predefined message type (or "built-in message type") has a unique type identifier (ObjectName), and the message content must conform to the predefined content structure. Different message types have different processing logic on the server and client sides.

Message Attributes

Different message types have different processing logic on the server and client sides, specifically reflected in attributes such as whether the message is stored, whether it is counted as unread, whether it supports offline messages, and whether it supports push notifications.

  • Client Counting and Storage Policies: The counting policy determines whether the message affects the unread message count. If a received message affects the unread count of a conversation, the unread message count of the conversation in the conversation list will increase by one. The storage policy determines whether the message is stored in the client's local database after being sent or received.
  • Offline Message Caching: The IM server caches messages in one-to-one chats, group chats, and system conversations when the recipient is offline, with a default maximum caching period of 7 days. If the recipient comes online within 7 days, they can still receive the message. After 7 days, the message is removed from the offline cache.
  • Remote Push Notifications: When the recipient is offline, whether the message triggers a remote push notification by default. A necessary condition for supporting remote push notifications is that the message has a push notification title and content. The IM service predefines push notification titles and content for some commonly used message types. Unless explicitly stated that push is not supported, other message types can trigger remote push notifications when the recipient is offline if the push notification title and content are set when sending the message.

Important

  • The counting behavior on the client side only affects the unread count of the conversation, not the unread count displayed on the App badge.
  • When sending one-to-one chat, group chat, chatroom, ultra group, or system messages via the server API, they are only stored in the recipient's server-side historical message records by default, and this behavior depends on the corresponding cloud storage service. If the cloud storage service is unavailable, the message cannot be stored in the historical records. If you need to store the message in the sender's server-side historical message records as well, please refer to How to Sync Sent Messages to the Sender Client.
  • Ultra group and chatroom services do not support offline message caching.
  • Web and mini-program clients do not support client-side message storage due to unreliable local storage.
  • Since Web, mini-program, and PC clients do not have push service platforms, they cannot receive push notifications.

Message Classification

For easier understanding, we categorize the predefined message types into the following groups:

  • User Content Messages: These include messages that users may send to each other, such as text, images, GIFs, voice, files, short videos, locations, references, and merged forwards.
  • Notification Messages: These represent notification information that may need to be displayed in the chat UI, such as tip notifications.
  • Status Messages: These represent states, such as typing status (indicating "the other party is typing") or read receipts in one-to-one chats.
  • Signaling Messages: These are used by the IM service to implement its own business functions, and applications generally do not need to process them.

Each category provides multiple predefined message types. If the client SDK sends a predefined message type, you can directly construct the message object, set the corresponding message content, and send it. If using the server API, you need to specify the ObjectName of the message type and strictly follow the predefined message content structure when passing the message content.

User Content Messages

User content messages include messages that users may send to each other, such as text, images, GIFs, voice, files, short videos, locations, references, and merged forwards.

The IM server predefines push notification titles and content for user content message types. If custom push notification titles and content are not provided when sending the message, the predefined titles and content are used by default. The default push notification titles and content can be found in the documentation for each message type in the table below.

Message TypeObjectNameClient Counting and Storage PolicyOffline Message CachingRemote Push Notification
Text MessageRC:TxtMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
High-Quality Voice MessageRC:HQVCMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
Image MessageRC:ImgMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
GIF MessageRC:GIFMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
Image and Text MessageRC:ImgTextMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
File MessageRC:FileMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
Location MessageRC:LBSMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
Short Video MessageRC:SightMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
Reference MessageRC:ReferenceMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default
Merged Forward MessageRC:CombineMsgISCOUNTED: Stored on the client and counted as unreadSupportedPush supported by default

Notification Messages

Notification messages generally need to be displayed in the chat UI, such as "Zhang San joined the group." These messages do not increase the unread message count.

The IM server does not predefine push notification titles and content for notification message types. If custom push notification titles and content are not provided when sending the message, remote push notifications will not be triggered by default, even if the recipient is offline. To support push notifications, please provide custom push notification content.

Message TypeObjectNameClient Counting and Storage PolicyOffline Message CachingRemote Push Notification
Recall Notification MessageRC:RCNtfISPERSISTED: Stored on the client, not counted as unreadSupportedPush not supported by default
Contact (Friend) Notification MessageRC:ContactNtfISPERSISTED: Stored on the client, not counted as unreadSupportedPush not supported by default
Profile Notification MessageRC:ProfileNtfISPERSISTED: Stored on the client, not counted as unreadSupportedPush not supported by default
Tip Notification MessageRC:InfoNtfISPERSISTED: Stored on the client, not counted as unreadSupportedPush not supported by default
Group Notification MessageRC:GrpNtfISPERSISTED: Stored on the client, not counted as unreadSupportedPush not supported by default
Command Reminder MessageRC:CmdNtfISPERSISTED: Stored on the client, not counted as unreadSupportedPush not supported by default

Status Messages and Attributes

These represent real-time states, such as typing status, and can only be received when the user is online. Since status messages are not stored on the client or server, if the recipient is offline, they cannot receive the status message. If using the IM server API to send status messages, please use the appropriate interfaces: Send One-to-One Status Message, Send Group Status Message.

Message TypeObjectNameClient Counting and Storage PolicySupports Offline Message CachingRemote Push Notification
Typing Status MessageRC:TypStsSTATUS: Not stored on the client, not counted as unreadNot supportedPush not supported

Signaling Messages

tip

These are used by the IM service to implement SDK business functions. They are generally sent internally by the SDK or the IM server, and developers do not need to process them.

These are messages that need to be ensured to be received but do not need to be displayed, such as command information sent by the operation platform to the terminal. If the message recipient is offline, they can receive the message via offline messages when they come back online. Post-messaging Callback data will include these message types. Pre-messaging Callback services support configuring these message types.

Signaling Messages

The IM server predefines push notification titles and content for some signaling message types. If custom push notification titles and content are not provided when sending the message, the predefined titles and content are used by default.

Message TypeObjectNameClient Counting and Storage PolicySupports Offline Message CachingRemote Push Notification
Command MessageRC:CmdMsgNONE: Not stored on the client, not counted as unreadSupportedPush not supported by default
Recall Command MessageRC:RcCmdNONE: Not stored on the client, not counted as unreadSupportedPush supported by default
One-to-One Chat Read Receipt MessageRC:ReadNtfNONE: Not stored on the client, not counted as unreadSupportedPush not supported by default
Group Chat Read Receipt Request MessageRC:RRReqMsgNONE: Not stored on the client, not counted as unreadSupportedPush not supported by default
Group Chat Read Receipt Response MessageRC:RRRspMsgNONE: Not stored on the client, not counted as unreadSupportedPush not supported by default
Multi-Device Read Status Sync MessageRC:SRSMsgNONE: Not stored on the client, not counted as unreadSupportedPush not supported by default
Chatroom Attribute Notification MessageRC:chrmKVNotiMsgNONE: Not stored on the client, not counted as unreadSupportedPush not supported by default

RTC Signaling Messages

The IM server predefines push notification titles and content for RTC signaling message types. If custom push notification titles and content are not provided when sending the message, the predefined titles and content are used by default.

Message TypeObjectNameClient Counting and Storage PolicySupports Offline Message CachingRemote Push Notification
RTC Accept Signaling MessageRC:VCAcceptNONE: Not stored on the client, not counted as unreadSupportedPush supported by default
RTC Hangup Signaling MessageRC:VCHangupNONE: Not stored on the client, not counted as unreadSupportedPush supported by default
RTC Invite Signaling MessageRC:VCInviteNONE: Not stored on the client, not counted as unreadSupportedPush supported by default
RTC Media Switch Signaling MessageRC:VCModifyMediaNONE: Not stored on the client, not counted as unreadSupportedPush supported by default
RTC Member Change Signaling MessageRC:VCModifyMem NONE: Not stored on the client, not counted as unreadSupportedPush supported by default
RTC Ringing Signaling MessageRC:VCRingingNONE: Not stored on the client, not counted as unreadSupportedPush supported by default

Message Extension Function Messages

The ObjectName for message extension function messages is RC:MsgExMsg. In ultra group message services, when setting or deleting message extension information, you can receive message extension function messages via message callbacks or post-messaging callbacks. Clients cannot receive these messages.