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