Skip to main content

Message Overview

Basic Message Structure

Property NameTypeDescription
conversationTypeRCIMIWConversationTypeConversation type
messageTypeRCIMIWMessageTypeMessage type
targetIdstringConversation ID
channelIdstringBusiness identifier of the conversation, limited to 20 characters
messageIdnumberUnique ID of the message stored in the local database. When sending a new message, this ID should not be specified, otherwise the message will fail to be stored. When resending a failed message, you can use the ID of the previously failed message. Ensure that the message instance from the last failed send is used.
messageUIdstringServer message unique ID (globally unique under the same App Key)
offLinebooleanWhether it is an offline message. This is only valid in the callback method for receiving messages. If the message is an offline message, the value is YES; otherwise, it is NO.
groupReadReceiptInfoRCIMIWGroupReadReceiptInfoGroup read receipt status
receivedTimenumberMessage received time (Unix timestamp, milliseconds)
sentTimenumberMessage sent time (Unix timestamp, milliseconds)
receivedStatusRCIMIWReceivedStatusMessage received status
sentStatusRCIMIWSentStatusMessage sent status
senderUserIdstringSender ID
directionRCIMIWMessageDirectionMessage direction
userInfoRCIMIWUserInfoUser information carried by the message
mentionedInfoRCIMIWMentionedInfoMention information in the message
pushOptionsRCIMIWMessagePushOptionsMessage push configuration
extrastringAdditional fields of the message
expansionMap<string, string>List of message extensions. This property is determined when the message is sent and cannot be modified afterward.
Extensions are only supported in one-to-one and group chats. Other conversation types cannot set extensions.
The default message extension key length cannot exceed 32, and the value length cannot exceed 4096. The maximum number of extensions that can be set at once is 20, and the total number of message extensions cannot exceed 300.

Message Types

The message types (RCIMIWMessageType) enumeration in IMLib provides predefined text, voice, image, and other message types. It also supports custom messages through RCIMIWMessageType.CUSTOM.

By default, all types of messages are stored locally on the client and count toward unread messages. The following types are exceptions:

  • Recall message type (RCIMIWMessageType.RECALL): Stored locally on the client but does not count toward unread messages.
  • Command message type (RCIMIWMessageType.COMMAND): Not stored locally on the client and does not count toward unread messages.
  • Command notification message type (RCIMIWMessageType.COMMAND_NOTIFICATION): Stored locally on the client but does not count toward unread messages.
  • Custom message type (RCIMIWMessageType.CUSTOM): Storage policy is controlled by the app via RCIMIWCustomMessagePolicy.

Text Message

Type: RCIMIWMessageType.TEXT

Exclusive accessible properties:

Property NameTypeDescription
textstringText content

Constructing a Text Message

engine.createTextMessage(type, targetId, channelId, text)
.then((message: RCIMIWTextMessage) => {});
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
textstringText content

Voice Message

Type: RCIMIWMessageType.VOICE

Exclusive accessible properties:

Property NameTypeDescription
durationnumberVoice duration in seconds

Constructing a Voice Message

engine.createVoiceMessage(
type,
targetId,
channelId,
path,
duration
)
.then((message: RCIMIWVoiceMessage) => {});
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
pathstringLocal path of the voice message, must be a valid path
durationnumberDuration of the voice message

Image Message

Type: RCIMIWMessageType.IMAGE

Exclusive accessible properties:

Property NameTypeDescription
thumbnailBase64StringstringThumbnail data of the image
originalbooleanWhether it is the original image

Constructing an Image Message

engine.createImageMessage(conversationType, targetId, channelId, path)
.then((message: RCIMIWImageMessage) => {})
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
pathstringLocal path of the image message, must be a valid path

File Message

Type: RCIMIWMessageType.FILE

Exclusive accessible properties:

Property NameTypeDescription
namestringFile name
fileTypestringFile type
sizenumberFile size in bytes

Constructing a File Message

engine.createFileMessage(conversationType, targetId, channelId, path)
.then((message: RCIMIWFileMessage) => {})
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
pathstringLocal path of the file message, must be a valid path

Short Video Message

Type: RCIMIWMessageType.SIGHT

Exclusive accessible properties:

Property NameTypeDescription
durationnumberVideo duration
sizenumberVideo size
namestringVideo name
thumbnailBase64StringstringThumbnail data

Constructing a Short Video Message

engine.createSightMessage(conversationType, targetId, channelId, path, duration)
.then((message: RCIMIWSightMessage) => {})
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
pathstringLocal path of the short video message, must be a valid path
durationnumberDuration of the short video message

GIF Message

Type: RCIMIWMessageType.GIF

Exclusive accessible properties:

Property NameTypeDescription
dataSizenumberGIF size in bytes
widthnumberGIF width
heightnumberGIF height

Constructing a GIF Message

engine.createGIFMessage(conversationType, targetId, channelId, path)
.then((message: RCIMIWGIFMessage) => {})
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
pathstringLocal path of the GIF message

Recall Message

Recall messages cannot be actively constructed and sent. To recall a message, please call the recall message interface.

Type: RCIMIWMessageType.RECALL

Exclusive accessible properties:

Property NameTypeDescription
adminbooleanWhether it is an admin operation
deletedbooleanWhether it is deleted
recallTimenumberSent time of the original message being recalled (milliseconds)
recallActionTimenumberTime of the recall action (milliseconds)
originalMessageRCIMIWMessageThe original message being recalled

Reference Message

Type: RCIMIWMessageType.REFERENCE

Exclusive accessible properties:

Property NameTypeDescription
textstringReference text
referenceMessageRCIMIWMessageThe referenced message

Constructing a Reference Message

engine.createReferenceMessage(conversationType, targetId, channelId, path, text)
.then((message: RCIMIWReferenceMessage) => {})
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
referenceMessageRCIMIWMessageThe referenced message
textstringReference text content

Location Message

Type: RCIMIWMessageType.LOCATION

Exclusive accessible properties:

Property NameTypeDescription
longitudenumberLongitude information
latitudenumberLatitude information
poiNamestringPOI information
thumbnailPathstringThumbnail path

Constructing a Location Message

engine.createLocationMessage(conversationType, targetId, channelId, longitude, latitude, poiName, thumbnailPath)
.then((message: RCIMIWLocationMessage) => {})
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
longitudenumberLongitude
latitudenumberLatitude
poiNamestringPOI information
thumbnailPathstringLocal path of the thumbnail, must be a valid path

Command Message

Type: RCIMIWMessageType.COMMAND

Exclusive accessible properties:

Property NameTypeDescription
namestringCommand name
datastringCommand extension data, which can be any string, such as JSON data defined by you.

Command Notification Message

Type: RCIMIWMessageType.COMMAND_NOTIFICATION

Exclusive accessible properties:

Property NameTypeDescription
namestringCommand notification name
datastringCommand notification message extension data, which can be any string, such as JSON data defined by you.

Custom Message

Type: RCIMIWMessageType.CUSTOM

Exclusive accessible properties:

Property NameTypeDescription
identifierstringCustom message identifier
policyRCIMIWCustomMessagePolicyCustom message storage policy
fieldsMap<string, string>Key-value pairs of the custom message

Constructing a Custom Message

engine.createCustomMessage(
type,
targetId,
channelId,
policy,
messageIdentifier,
fields
)
.then((message: RCIMIWCustomMessage) => {})
Parameter NameParameter TypeDescription
typeRCIMIWConversationTypeConversation type
targetIdstringConversation ID
channelIdstringChannel ID, only supported in ultra groups. For other conversation types, pass null.
policyRCIMIWCustomMessagePolicyMessage storage policy
messageIdentifierstringMessage identifier, must be unique
fieldsMap<string, string>Key-value pairs of the message content

Invalid Type

When an unrecognized message is received, it will become an invalid type message. This type of message cannot be actively constructed and sent.

Type: RCIMIWMessageType.UNKNOWN

Exclusive accessible properties:

Property NameTypeDescription
rawDatastringMessage data
objectNamestringMessage identifier