Request
Body Params  application/json
{
    "channel_id": 0,
    "rule_id": "string",
    "rule_name": "string",
    "template_id": "string",
    "description": "string",
    "layers": [
        {}
    ],
    "aggr_window": 0,
    "time_filters": [
        {}
    ],
    "filters": [
        [
            {
                "key": "title",
                "oper": "IN",
                "vals": [
                    "string"
                ]
            }
        ]
    ]
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/channel/escalate/rule/update' \
--header 'Content-Type: application/json' \
--data-raw '{
    "channel_id": 0,
    "rule_id": "string",
    "rule_name": "string",
    "template_id": "string",
    "description": "string",
    "layers": [
        {}
    ],
    "aggr_window": 0,
    "time_filters": [
        {}
    ],
    "filters": [
        [
            {
                "key": "title",
                "oper": "IN",
                "vals": [
                    "string"
                ]
            }
        ]
    ]
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    }
}
Modified at 2025-01-22 10:14:38