- Open API
- Quick Start
- About Pagination
- Member Management
- Team Management
- Schedule Management
- Information Retrieval
- Preference Settings
- Channel
- Template Management
- Incident Management
- Group View
- Match conditions
- Enable rule
- Disable rule
- Delete rule
- Rule list
- See creation interface for filters explanation
- Create rule
- Rule description
- Update rule
- Channel
- Match conditions
- Match conditions
- Update rule
- Channel
- Rule ID
- Inner conditions
- Enable rule
- Rule list
- Rule details
- Rule name
- Rule description
- Match conditions
- Rule description
- See creation interface for filters explanation
- Disable rule
- Rule description
- Alert Management
- Change Management
- Insights (old)
- Custom Fields
- Service Calendar
- Label Enhancement
- Alert Processing
- Integration Routing
- License Management
- Insights
- Event API
- Webhook
Account Metrics
POST
/insight/account
Request
Body Params application/json
start_time
integer
See creation interface for filters explanation
end_time
integer
Channel
team_ids
array[integer]
Rule description
channel_ids
array[integer]
Match conditions
severities
array[string]
Update rule
Allowed values:
InfoWarningCritical
time_zone
string
Rule ID
Default:
Asia/Shanghai
aggregate_unit
string
Rule description
split_hours
boolean
Inner conditions
Example
{
"start_time": 1234567890,
"end_time": 1234567890,
"team_ids": [
123,
456
],
"channel_ids": [
1,
2,
3
],
"severities": [
"Warning"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://prod-cn.your-api-server.com/insight/account' \
--header 'Content-Type: application/json' \
--data-raw '{
"start_time": 1234567890,
"end_time": 1234567890,
"team_ids": [
123,
456
],
"channel_ids": [
1,
2,
3
],
"severities": [
"Warning"
]
}'
Responses
🟢200成功
application/json
Body
error
object (DutyError)
optional
code
enum<string>
Rule description
Allowed values:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
Inner conditions
data
object
optional
items
array [object {25}]
required
Example
{
"error": {
"code": "InvalidParameter",
"message": "string"
},
"data": {
"items": [
{
"total_engaged_seconds": 0,
"total_incident_cnt": 0,
"total_incidents_acknowledged": 0,
"total_incidents_closed": 0,
"total_incidents_auto_closed": 0,
"total_incidents_manually_closed": 0,
"total_incidents_timeout_closed": 0,
"total_incidents_escalated": 0,
"total_incidents_manually_escalated": 0,
"total_incidents_timeout_escalated": 0,
"total_incidents_reassigned": 0,
"total_notifications": 0,
"total_interruptions": 0,
"mean_seconds_to_ack": 0,
"mean_seconds_to_close": 0,
"noise_reduction_pct": 0,
"acknowlegement_pct": 0,
"ts": 0,
"hours": "work",
"channel_id": 0,
"channel_name": "string",
"team_id": 0,
"team_name": "string",
"total_alert_cnt": 0,
"total_alert_event_cnt": 0
}
]
}
}
Modified at 2025-01-22 10:26:17