See creation interface for filters explanation
Request
Body Params  application/json
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/channel/inhibit/rule/list' \
--header 'Content-Type: application/json' \
--data-raw '{
    "channel_id": 0
}'
Responses
application/json {
    "error": {
        "code": "string",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "channel_id": 0,
                "rule_id": "string",
                "rule_name": "string",
                "description": "string",
                "source_filters": [
                    [
                        {
                            "key": "title",
                            "oper": "IN",
                            "vals": [
                                "string"
                            ]
                        }
                    ]
                ],
                "target_filters": [
                    [
                        {
                            "key": "title",
                            "oper": "IN",
                            "vals": [
                                "string"
                            ]
                        }
                    ]
                ],
                "equals": [
                    "string"
                ],
                "is_directly_discard": true,
                "status": "enabled",
                "created_at": "string",
                "updated_at": "string",
                "updated_by": 0
            }
        ]
    }
}
Modified at 2025-01-22 10:14:38