请求网址

可以使用两种方法创建筛选器:

https://api.dotcom-monitor.com/config_api_v1/filters
发布 https://api.dotcom-monitor.com/config_api_v1/filters?verb=PUT

头参数

Content-Type: application/json
示例放置/开机自卸正文
{
    "Name": "HTTP ERRORS",
    "Description": "HTTP 500 & 504 Ignore",
    "Rules": 
    {
        "Time_Min": 5,
        "Number_Of_Locations": 4,
        "Number_Of_Tasks": 1,
        "Owner_Device": false
    },
    "Items": 
    [
        {
            "Error_Type": "Http",
            "Error_Code_To_Ignore": [500]
        }, 
        {
            "Error_Type": "Http",
            "Error_Code_To_Ignore": [504]
        }
    ]
}

所需的身体参数

若要为新筛选器指定 JSON 对象参数,建议先 获取现有的筛选器信息 ,并将响应用作新筛选器对象的示例。

领域 类型 必需/可选 描述

名字

字符串

必填

筛选器名称。

例子:
"Name": "4 locations"

规则

对象

必填

所需规则

  • “Number_Of_Locations”定义发送错误响应的监视位置数。 Number_Of_Locations必须大于 0。
  • “Number_Of_Tasks”定义失败任务数。 Number_Of_Tasks必须大于或等于 1。

例子:

"Rules": {
"Number_Of_Locations": 4,
"Number_Of_Tasks": 1
}

成功响应

示例响应
{
    "Success": true,
    "Result": 1110
}
领域

类型

描述

结果

int32

筛选器的唯一 ID。