发送自定义系统通知
POST
/im/v2/custom_notification
请求参数
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
发送着
type
integer
自定义通知类型
receiver_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
示例
{
"sender_id": "apifoxtest33",
"type": 1,
"receiver_id": "apifoxtest32",
"content": "Lorem irure cupidatat deserunt",
"push_config": {
"push_enabled": false,
"push_nick_enabled": true,
"push_content": "nulla qui voluptate",
"push_payload": null,
"push_forcepush_all": true,
"push_forcepush_ids": [
"56"
],
"push_forcepush_content": "pariatur eiusmod anim aliqua"
},
"sound": "in ",
"route_config": {
"route_enabled": false,
"route_environment": "tempor anim eiusmod officia"
},
"notification_config": {
"offline_enabled": false,
"unread_enabled": 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/custom_notification' \
--header 'AppKey;' \
--header 'X-custom-traceid: {% mock '\''uuid'\'' %}' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw '{
"sender_id": "apifoxtest33",
"type": 1,
"receiver_id": "apifoxtest32",
"content": "Lorem irure cupidatat deserunt",
"push_config": {
"push_enabled": false,
"push_nick_enabled": true,
"push_content": "nulla qui voluptate",
"push_payload": null,
"push_forcepush_all": true,
"push_forcepush_ids": [
"56"
],
"push_forcepush_content": "pariatur eiusmod anim aliqua"
},
"sound": "in ",
"route_config": {
"route_enabled": false,
"route_environment": "tempor anim eiusmod officia"
},
"notification_config": {
"offline_enabled": false,
"unread_enabled": true
}
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
示例
{
"code": 200,
"msg": "success",
"data": {}
}
🟢200成功
🟢200请求参数错误
🟢200服务器错误
修改于 2024-02-26 02:28:52