Request
Body Params  application/json
{
    "start_time": 0,
    "end_time": 0,
    "team_ids": [
        0
    ],
    "channel_ids": [
        0
    ],
    "severities": [
        "Info"
    ],
    "time_zone": "Asia/Shanghai",
    "asc": true,
    "orderby": "string"
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/insight/incident/export' \
--header 'Content-Type: application/json' \
--data-raw '{
    "start_time": 0,
    "end_time": 0,
    "team_ids": [
        0
    ],
    "channel_ids": [
        0
    ],
    "severities": [
        "Info"
    ],
    "time_zone": "Asia/Shanghai",
    "asc": true,
    "orderby": "string"
}'
Responses
{
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": [
        {
            "incident_id": "string",
            "account_id": 0,
            "team_id": 0,
            "channel_id": 0,
            "severity": "string",
            "created_at": 0,
            "is_acked": true,
            "is_assigned": true,
            "is_reassigned": true,
            "escalated_by": "string",
            "closed_by": "string",
            "seconds_to_first_ack": 0,
            "seconds_to_close": 0,
            "seconds_to_engage": 0
        }
    ],
    "p": 0,
    "limit": 0,
    "total": 0
}
Modified at 2025-01-22 10:27:10