Request
Body Params  application/json
{
    "start_time": 0,
    "end_time": 0,
    "step": "day",
    "channel_ids": [
        0
    ],
    "team_ids": [
        0
    ],
    "incident_severities": [
        "string"
    ]
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/report/oncall/incident/mtta' \
--header 'Content-Type: application/json' \
--data-raw '{
    "start_time": 0,
    "end_time": 0,
    "step": "day",
    "channel_ids": [
        0
    ],
    "team_ids": [
        0
    ],
    "incident_severities": [
        "string"
    ]
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "ts": 0,
                "mtta": 0
            }
        ]
    }
}
Modified at 2025-01-22 10:14:38