Request
Body Params  application/json
{
    "view_id": "string",
    "progress": "string",
    "title": "string",
    "channel_id": 0,
    "data_source_id": 0,
    "start_time": 0,
    "end_time": 0,
    "alert_severity": "string",
    "is_my_channel": true,
    "ever_muted": true,
    "labels": {}
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/alert/list-by-card' \
--header 'Content-Type: application/json' \
--data-raw '{
    "view_id": "string",
    "progress": "string",
    "title": "string",
    "channel_id": 0,
    "data_source_id": 0,
    "start_time": 0,
    "end_time": 0,
    "alert_severity": "string",
    "is_my_channel": true,
    "ever_muted": true,
    "labels": {}
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "title": "string",
                "total": 0,
                "alert_severity": "string",
                "alert_ids": [
                    "string"
                ]
            }
        ]
    }
}
Modified at 2025-04-27 09:51:18