策略创建
POST
/channel/escalate/rule/create最后修改时间: 1 年前
请求参数
Header 参数
Content-Type
string
可选
示例值:
application/json
Body 参数application/json
channel_id
integer
所属channel
rule_name
string
策略名称
template_id
string
模板id
默认为系统预置模板
description
string
策略描述
layers
array[object (EscalateLayer) {5}]
分派环节
max_times
integer
最大通知次数
默认2
notify_step
integer
通知间隔周期,单位分钟
默认10
escalate_window
integer
超过多少分钟,升级到下一窗口
默认30
force_escalate
boolean
是否强制升级
默认故障认领后不升级,设置为true,认领后也升级
target
object (EscalateTarget)
分派对象
aggr_window
integer
聚合窗口,单位秒,取值范围[0,3600]
time_filters
array[object (TimeFilter) {5}]
时间条件
start
string
开始时间,小于end
精度到分钟,如10:00
end
string
结束时间
精度到分钟,如23:59
repeat
array[integer]
星期模式,星期列表
与日历模式相关参数互斥,只能有一个
枚举值:
0123456
cal_id
string
日历模式,日历ID
与星期模式相关参数互斥,只能有一个
is_off
boolean
日历模式,是否为休息日
true为休息日
filters
array [array]
匹配条件
object (Filter)
可选
示例
{
"channel_id": 0,
"rule_name": "string",
"template_id": "string",
"description": "string",
"layers": [
{
"max_times": 0,
"notify_step": 0,
"escalate_window": 0,
"force_escalate": true,
"target": {
"team_ids": [
0
],
"person_ids": [
0
],
"schedule_to_role_ids": {
"{schedule_id}": [
0
]
},
"by": {
"follow_preference": true,
"critical": [
"email"
],
"warning": [
"email"
],
"info": [
"email"
]
},
"webhooks": [
{
"type": "feishu_app",
"settings": {}
}
]
}
}
],
"aggr_window": 0,
"time_filters": [
{
"start": "string",
"end": "string",
"repeat": [
0
],
"cal_id": "string",
"is_off": true
}
],
"filters": [
[
{
"key": "title",
"oper": "IN",
"vals": [
"string"
]
}
]
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
error
object (DutyError)
可选
code
enum<string>
错误码
枚举值:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
错误描述
data
object
可选
rule_id
string
ID
rule_name
string
名称
示例
未设置
最后修改时间: 1 年前