curl --request POST \
--url 'https://api.flashcat.cloud/channel/silence/rule/create?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"channel_id": 123,
"rule_name": "<string>",
"description": "<string>",
"filters": [
[
{
"key": "title",
"oper": "IN",
"vals": [
"<string>"
]
}
]
],
"time_filter": {
"start_time": 123,
"end_time": 123
},
"time_filters": [
{
"start": "<string>",
"end": "<string>",
"repeat": [
0
],
"cal_id": "<string>",
"is_off": true
}
],
"is_directly_discard": true,
"from_incident_id": "<string>"
}
'