Request
Body Params  application/json
{
    "view_id": "string",
    "asc": true,
    "progress": "string",
    "title": "string",
    "channel_ids": [
        0
    ],
    "responder_ids": [
        0
    ],
    "acker_ids": [
        0
    ],
    "creator_ids": [
        0
    ],
    "incident_ids": [
        "string"
    ],
    "start_time": 0,
    "end_time": 0,
    "range_by": "string",
    "incident_severity": "Critical",
    "is_related": true,
    "is_snoozed": true,
    "is_my_team": true,
    "labels": {
        "$key": [
            "string"
        ]
    }
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/incident/list-by-card' \
--header 'Content-Type: application/json' \
--data-raw '{
    "view_id": "string",
    "asc": true,
    "progress": "string",
    "title": "string",
    "channel_ids": [
        0
    ],
    "responder_ids": [
        0
    ],
    "acker_ids": [
        0
    ],
    "creator_ids": [
        0
    ],
    "incident_ids": [
        "string"
    ],
    "start_time": 0,
    "end_time": 0,
    "range_by": "string",
    "incident_severity": "Critical",
    "is_related": true,
    "is_snoozed": true,
    "is_my_team": true,
    "labels": {
        "$key": [
            "string"
        ]
    }
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "title": "string",
                "total": 0,
                "incident_severity": "string",
                "incident_ids": [
                    "string"
                ]
            }
        ]
    }
}
Modified at 2025-04-29 03:09:33