提交工单
咨询集成、功能及报价等问题
You can call this operation to send messages to all online users in a room.
The QPS limit is 10 calls per second. If you need a higher limit, contact ZEGOCLOUD business staff for billing.
The client receives the message notification in the following ZIM SDK callbacks.
iOS | Android | macOS | Windows |
---|---|---|---|
Web | Flutter | Unity3D | React Native |
The following table describes only the operation-specific request parameters and some common request parameters. For the complete list of common request parameters, see the Public request parameters section of the Accessing Server APIs topic.
Parameter | Type | Required | Description |
---|---|---|---|
FromUserId |
String |
Yes |
The ID of the message sender. |
RoomId |
String |
Yes |
The room ID. |
MessageType |
Number |
Yes |
The message type. For more information about room message types, see MessageBody Introduction. |
Priority |
Number |
Yes |
The message priority. Valid values:
|
MessageBody |
Object |
Yes |
The message content. For more information, see MessageBody Introduction. |
SubMsgType |
Number |
No (Yes if MessageType is 200 ) |
The custom message type. Value range: [0,200]. |
SearchedContent |
String |
No |
The search field for a custom message. This field is valid only if MessageType is 200 , cannot exceed 64 bytes in length, and must be specified to search for custom messages in the client. |
Request URL:
https://zim-api.zego.im/?Action=SendRoomMessage
&<Common request parameters>
Request body:
{
"FromUserId": "u1",
"RoomId": "r1",
"MessageType": 1,
"Priority": 1,
"MessageBody": {
"Message":"hello world",
"ExtendedData":"d"
}
}
Parameter | Type | Description |
---|---|---|
Code |
Number |
The return code. |
Message |
String |
The description of the request result. |
RequestId |
String |
The request ID. |
{
"Code":0,
"Message":"success",
"RequestId":"343649807833778782"
}
The following table describes only the return codes related to the business logic of the operation. For the complete list of return codes, see Return codes.
Return Code | Description | Solution |
---|---|---|
660000025 |
Failed to send the Base64-encoded signaling message when IsBase64 is set to 1 in MessageBody . |
Check the following items: - Check whether IsBase64 needs to be set to 1 , that is, whether a binary signaling message needs to be sent. - Check whether the message is Base64-encoded. |
660300001 |
The room does not exist. |
Check whether the value of the RoomId parameter is valid. |
660300013 |
The receipt is unavailable for room messages. |
Delete the HasReceipt field in the request. |
660400001 |
The message size exceeds the limit. |
Check the message size. |
660500002 |
The message sender has not logged in to the ZIM SDK. |
Log in to the ZIM SDK before sending the message. |