Get Organization SLA Metrics
GET/organizations/:organizationId/sla-metrics
Get aggregated SLA compliance metrics for an organization
Request
Path Parameters
organizationId stringrequired
Organization unique identifier
Query Parameters
startDate string
Start date (ISO 8601). Defaults to 30 days ago.
endDate string
End date (ISO 8601). Defaults to today.
Responses
- 200
- 401
- 403
- application/json
- Schema
- Example (from schema)
- Example
Schema
startDate stringrequired
Start date of metrics period (ISO 8601)
endDate stringrequired
End date of metrics period (ISO 8601)
response objectrequired
Response SLA metrics
total numberrequired
onTime numberrequired
overdue numberrequired
percentage numberrequired
resolution objectrequired
Resolution SLA metrics
total numberrequired
onTime numberrequired
overdue numberrequired
percentage numberrequired
byPriority objectrequired
Priority-level breakdown
0 objectrequired
1 objectrequired
2 objectrequired
3 objectrequired
{
"startDate": "string",
"endDate": "string",
"response": {
"total": 0,
"onTime": 0,
"overdue": 0,
"percentage": 0
},
"resolution": {
"total": 0,
"onTime": 0,
"overdue": 0,
"percentage": 0
},
"byPriority": {
"0": {},
"1": {},
"2": {},
"3": {}
}
}
{}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Unauthenticated",
"message": "Authentication is required and has failed or has not yet been provided."
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Forbidden",
"message": "Access to the requested resource is forbidden."
}
Loading...
Was this page helpful?