curl --request POST \
--url 'https://api.flashcat.cloud/channel/inhibit/rule/create?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"channel_id": 123,
"rule_name": "<string>",
"description": "<string>",
"source_filters": [
[
{
"key": "title",
"oper": "IN",
"vals": [
"<string>"
]
}
]
],
"target_filters": [
[
{
"key": "title",
"oper": "IN",
"vals": [
"<string>"
]
}
]
],
"equals": [
"<string>"
],
"priority": 123,
"is_directly_discard": true
}
'