Request
Body Params  application/json
{
    "start_time": 0,
    "end_time": 0,
    "team_ids": [
        0
    ],
    "channel_ids": [
        0
    ],
    "severities": [
        "Info"
    ],
    "time_zone": "Asia/Shanghai",
    "responder_ids": [
        "string"
    ],
    "aggregate_unit": "string",
    "split_hours": true
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/insight/responder' \
--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",
    "responder_ids": [
        "string"
    ],
    "aggregate_unit": "string",
    "split_hours": true
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "total_incident_cnt": 0,
                "total_incidents_acknowledged": 0,
                "total_incidents_reassigned": 0,
                "total_incidents_escalated": 0,
                "total_incidents_manually_escalated": 0,
                "total_incidents_timeout_escalated": 0,
                "total_notifications": 0,
                "total_interruptions": 0,
                "total_engaged_seconds": 0,
                "mean_seconds_to_ack": 0,
                "ts": 0,
                "hours": "work",
                "responder_id": 0,
                "responder_name": "string"
            }
        ]
    }
}
Modified at 2025-01-22 10:26:03