批量发送单聊消息
POST
/im/v2/conversations/messages
请求参数
Header 参数
AppKey
string
必需
默认值:
{{AppKey}}
X-custom-traceid
string
可选
默认值:
{% mock 'uuid' %}
Nonce
string
必需
默认值:
{{Nonce}}
CurTime
string
必需
默认值:
{{CurTime}}
CheckSum
string
必需
默认值:
{{CheckSum}}
Body 参数application/json
receiver_no_sense
boolean
接收方无感知
sender_no_sense
boolean
发送方无感知
默认值:
false
sender_id
string
发送者
extension
string
开发者扩展字段
message
object
消息体
message_type
integer
消息类型
sub_type
integer
自定义消息子类型
> 0
text
string
文本消息
<= 500 字符
attachment
object
多媒体消息内容
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
推送文案
<= 500 字符
push_payload
string
推送payload
<= 2048 字符
push_forcepush_all
boolean
是否强制推送
默认值:
false
push_forcepush_ids
array[string]
强推列表
push_forcepush_content
string
强推文案
<= 500 字符
p2p_option
object
单聊消息配置
check_friend
boolean
是否校验好友关系
antispam_config
object
安全通
antispam_enabled
boolean
安全通开关
默认值:
true
antispam_business_id
string
安全通业务ID
antispam_extension
string
安全通增强参数
antispam_cheating
string
反作弊检测参数
receiver_ids
array[string]
接收者
示例
{
"sender_no_sense": false,
"extension": "officia labore ex sit ut",
"message": {
"message_type": 0,
"sub_type": 30164486,
"text": "laborum irure",
"attachment": {
"name": "型用四这却认",
"md5": "amet sit Excepteur officia",
"url": "http://xkjotf.cq/ckp",
"ext": "in qui",
"width": 10,
"height": 95,
"size": 89
}
},
"route_config": {
"route_enabled": false,
"route_environment": "incididunt eiusmod esse magna"
},
"push_config": {
"push_enabled": true,
"push_nick_enabled": false,
"push_content": "proident reprehenderit",
"push_payload": null,
"push_forcepush_all": true,
"push_forcepush_ids": [
"30"
],
"push_forcepush_content": "irure"
},
"antispam_config": {
"antispam_enabled": false,
"antispam_business_id": "31",
"antispam_extension": null,
"antispam_cheating": null
},
"p2p_option": {
"check_friend": true
},
"sender_id": "apifoxtest1",
"receiver_ids": [
"apifoxtest2"
]
}
示例代码
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/conversations/messages' \
--header 'AppKey;' \
--header 'X-custom-traceid: {% mock '\''uuid'\'' %}' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"sender_no_sense": false,
"extension": "officia labore ex sit ut",
"message": {
"message_type": 0,
"sub_type": 30164486,
"text": "laborum irure",
"attachment": {
"name": "型用四这却认",
"md5": "amet sit Excepteur officia",
"url": "http://xkjotf.cq/ckp",
"ext": "in qui",
"width": 10,
"height": 95,
"size": 89
}
},
"route_config": {
"route_enabled": false,
"route_environment": "incididunt eiusmod esse magna"
},
"push_config": {
"push_enabled": true,
"push_nick_enabled": false,
"push_content": "proident reprehenderit",
"push_payload":null,
"push_forcepush_all": true,
"push_forcepush_ids": [
"30"
],
"push_forcepush_content": "irure"
},
"antispam_config": {
"antispam_enabled": false,
"antispam_business_id": "31",
"antispam_extension": null,
"antispam_cheating":null
},
"p2p_option": {
"check_friend": true
},
"sender_id": "apifoxtest1",
"receiver_ids": [
"apifoxtest2"
]
}'
返回响应
🟢200成功
application/json
Body
状态码,200 表示请求成功。
code
integer
必需
msg
string
必需
data
object
必需
示例
{
"code": 200,
"msg": "success",
"data": {
"success_list": [
{
"text": "laborum irure",
"attachment": {
"ext": "in qui",
"size": 89,
"name": "型用四这却认",
"width": 10,
"url": "http://xkjotf.cq/ckp",
"md5": "amet sit Excepteur officia",
"height": 95
},
"message_server_id": 9897543190303,
"sender_id": "apifoxtest1",
"conversation_type": 1,
"receiver_id": "apifoxtest2",
"create_time": 1707017423142,
"message_type": 0,
"sub_type": 30164486
}
]
}
}
🟢200成功
🟢200请求参数错误
🟢200服务器错误
修改于 2024-12-23 07:09:40