更新消息
开发中
POST
/im/v2/messages/actions/modifyMsg
请求参数
Header 参数
AppKey
string
必需
默认值:
{{AppKey}}
X-custom-traceid
string
可选
默认值:
{% mock 'uuid' %}
Nonce
string
必需
默认值:
{{Nonce}}
CurTime
string
必需
默认值:
{{CurTime}}
CheckSum
string
必需
默认值:
{{CheckSum}}
Body 参数application/json
operator
string
必需
extension
string
可选
该字段长度上限以使用的 IM 套餐为准。IM 旗舰版及以上套餐才支持配置字段上限。
type
integer
必需
1:单聊。
2:高级群。
3:超大群。
该参数设置必须和原始消息保持一致。
message
object
消息体
message_type
integer
消息类型
sub_type
integer
自定义消息子类型
> 0
text
string
文本消息
<= 500 字符
attachment
object
多媒体消息内容
message_server_id
number
必需
receiver_id
string
必需
time
number
必需
sender_id
string
必需
message_config
object
可选
conversation_update_enabled
boolean
更新会话
默认值:
true
route_config
object
抄送配置
route_enabled
boolean
可选
默认值:
true
route_environment
string
可选
push_config
object
推送配置
push_enabled
boolean
是否推送
默认值:
true
push_nick_enabled
boolean
推送是否带昵称
默认值:
true
push_content
string
推送文案
推送文案的显示规则如下:
push_content 不为空且 push_nick_enabled = true,最终推送文案为:推送者昵称+ push_content
push_content 不为空且 push_nick_enabled = false,最终推送文案为:push_content
push_content 为空且 push_nick_enabled = true,最终推送文案为:推送者昵称+默认文案
push_content 为空且 push_nick_enabled = false,最终推送文案为:默认文案
其中,根据消息类型,默认文案分为以下几种:
文本消息默认文案:更新了一条消息
地理位置默认文案:更新了一个地理位置
语音消息默认文案:更新了一段语音
视频消息默认文案:更新了一段视频
文件消息默认文案:更新了一个文件
图片消息默认文案:更新了一张图片
Tip 消息默认文案:更新了一条提醒
语音聊天邀请消息默认文案:您收到一条消息更新
视频聊天邀请消息默认文案:您收到一条消息更新
<= 500 字符
push_payload
string
推送payload
<= 2048 字符
push_forcepush_all
boolean
是否强制推送
默认值:
false
push_forcepush_ids
array[string]
强推列表
push_forcepush_content
string
强推文案
<= 500 字符
push_forcepush_enable
boolean
可选
antispam_config
object
安全通
antispam_enabled
boolean
安全通开关
默认值:
true
antispam_business_id
string
安全通业务ID
antispam_extension
string
安全通增强参数
antispam_custom_message_enabled
boolean
自定义内容审核开关
默认值:
false
antispam_custom_message
string
自定义安全通检测内容
antispam_cheating
string
反作弊检测参数
p2p_option
object
单聊消息配置
check_friend
boolean
是否校验好友关系
team_option
object
高级群消息功能配置项。
ignore_chat_banned
boolean
可选
默认值:
false
check_team_member_valid
boolean
可选
默认值:
true
superteam_option
object
超大群消息功能配置项。
ignore_chat_banned
boolean
可选
默认值:
false
ignore_member_chat_banned
boolean
可选
默认值:
false
check_team_member_valid
boolean
可选
默认值:
true
示例
{
"operator": "string",
"extension": "string",
"type": 0,
"message": {
"message_type": 0,
"sub_type": 1,
"text": "string",
"attachment": {},
"message_server_id": 0,
"receiver_id": "string",
"time": 0,
"sender_id": "string"
},
"message_config": {
"conversation_update_enabled": "true"
},
"route_config": {
"route_enabled": true,
"route_environment": "string"
},
"push_config": {
"push_enabled": "true",
"push_nick_enabled": "true",
"push_content": "string",
"push_payload": "string",
"push_forcepush_all": "false",
"push_forcepush_ids": [
"string"
],
"push_forcepush_content": "string",
"push_forcepush_enable": true
},
"antispam_config": {
"antispam_enabled": true,
"antispam_business_id": "string",
"antispam_extension": "string",
"antispam_custom_message_enabled": false,
"antispam_custom_message": "string",
"antispam_cheating": "string"
},
"p2p_option": {
"check_friend": true
},
"team_option": {
"ignore_chat_banned": false,
"check_team_member_valid": true
},
"superteam_option": {
"ignore_chat_banned": false,
"ignore_member_chat_banned": false,
"check_team_member_valid": true
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.yunxinapi.com/im/v2/messages/actions/modifyMsg' \
--header 'AppKey;' \
--header 'X-custom-traceid: {% mock '\''uuid'\'' %}' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
modify_account_id
string
可选
只有消息被更新才会返回该字段。
modify_time
number
可选
只有消息被更新才会返回该字段。
message_type
integer
消息类型
sub_type
integer
自定义消息子类型
> 0
text
string
文本消息
<= 500 字符
attachment
object
多媒体消息内容
message_server_id
number
服务端消息 ID。
sender_id
string
消息发送方账号 ID。
receiver_id
string
消息接收者账号 ID。
create_time
number
消息发送时间戳。
示例
{
"code": 0,
"msg": "string",
"data": {
"modify_account_id": "string",
"modify_time": 0,
"message_type": 0,
"sub_type": 1,
"text": "string",
"attachment": {},
"message_server_id": 0,
"sender_id": "string",
"receiver_id": "string",
"create_time": 0
}
}
修改于 2025-01-15 03:32:58