批量发送自定义系统通知
POST
/im/v2/custom_notification/batch
请求参数
Header 参数
AppKey
string
必需
默认值:
{{AppKey}}
X-custom-traceid
string
可选
默认值:
{% mock 'uuid' %}
Nonce
string
必需
默认值:
{{Nonce}}
CurTime
string
必需
默认值:
{{CurTime}}
CheckSum
string
必需
默认值:
{{CheckSum}}
Body 参数application/json
sender_id
string
发送着
content
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 字符
sound
string
声音文件
<= 30 字符
route_config
object
抄送配置
route_enabled
boolean
可选
默认值:
true
route_environment
string
可选
notification_config
object
通知配置
notification_enabled
boolean
可选
默认值:
true
notification_extension
string
可选
high_priority
integer
可选
默认值:
0
high_priority_policy
integer
可选
默认值:
0
receiver_ids
array[string]
接收者账号 ID 列表
示例
{
"sender_id": "apifoxtest18",
"content": "tempor nisi aliqua",
"push_config": {
"push_enabled": true,
"push_nick_enabled": false,
"push_content": "ut voluptate nulla aliquip",
"push_payload": null,
"push_forcepush_all": false,
"push_forcepush_ids": [
"30"
],
"push_forcepush_content": "culpa Lorem irure dolore fugiat"
},
"sound": "magna ex sit velit",
"route_config": {
"route_enabled": false,
"route_environment": null
},
"notification_config": {
"offline_enabled": false,
"unread_enabled": false
},
"receiver_ids": [
"apifoxtest10",
"apifoxtest32"
]
}
示例代码
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/custom_notification/batch' \
--header 'AppKey;' \
--header 'X-custom-traceid: {% mock '\''uuid'\'' %}' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"sender_id": "apifoxtest18",
"content": "tempor nisi aliqua",
"push_config": {
"push_enabled": true,
"push_nick_enabled": false,
"push_content": "ut voluptate nulla aliquip",
"push_payload": null,
"push_forcepush_all": false,
"push_forcepush_ids": [
"30"
],
"push_forcepush_content": "culpa Lorem irure dolore fugiat"
},
"sound": "magna ex sit velit",
"route_config": {
"route_enabled": false,
"route_environment": null
},
"notification_config": {
"offline_enabled": false,
"unread_enabled": false
},
"receiver_ids": ["apifoxtest10","apifoxtest32"]
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
success_list
array[string]
可选
failed_list
array[string]
可选
示例
{
"code": 200,
"msg": "success",
"data": {
"failed_list": [
{
"account_id": "hkj-100",
"error_msg": "error",
"error_code": 102404
}
],
"success_list": [
"hkj1"
]
}
}
🟢200成功
🟢200请求参数错误
🟢200服务器错误
修改于 2024-02-26 02:28:54