删除分派策略¶
该接口基于分派策略ID删除对应的分派策略。
示例¶
请求URl
curl --location --request DELETE 'https://caweb.aiops.com/api/alert/rest/api/v1/escalation/{escalationId}' \ --user 'email@example.com:<access_token>' \ --header 'Accept: application/json'
参数 | 类型 | 说明 |
---|---|---|
escalationId | string | 策略ID,可通过查询接口获取 |
如果获取escalationId
• 请参考查询分派策略
access_token如何获取请参考文档 api令牌
提示
• 示例邮箱应替换为用户注册所用邮箱
• access_token应替换为您手动获取的access_token
• 如需对请求进行加密处理:请将
--user 'email@example.com:access_token' \
--header 'Accept: application/json'
替换为:
--header 'Authorization: Basic Z2FveWluaW5nOTk5NUAxNjMuY29tOmt1WWl6bmljZ3oxN0JBVjk=' \
--header 'Content-Type: application/json'
• 替换步骤请参考加密步骤
响应报文¶
{ "result": "success", "message": "ok", "data":null , "totalCount": 1, "code": 200 }
响应参数¶
字段名 | 类型 | 说明 |
---|---|---|
result | string | 请求结果,可能值:success 或 failed |
message | string | 请求状态描述 |
data | 可忽略默认null | |
totalCount | int | 可忽略通常为 1 |
code | int | HTTP 状态码(成功为 200) |
错误响应¶
{ "result": "failed", "message": "失败,请检查参数.", "data": null, "totalCount": 0, "code": 400 }
错误响应码¶
错误码 | 说明 |
---|---|
200 | 成功 |
400 | 失败,传入的参数有问题 |
401 | 认证失败,用户名密码错误 |
403 | 权限失败,用户没有权限做此操作 |