slas

Sla Trackers Get Post

POST
Gets an SLA tracker.

Request

This endpoint expects an object.
id
stringRequired
The ID of the SLA tracker to get.

Response

This endpoint returns an object
sla_tracker
object
POST
1curl -X POST https://api.devrev.ai/sla-trackers.get \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "id"
6}'
Response
1{
2 "sla_tracker": {
3 "id": "id",
4 "metric_target_summaries": [
5 {
6 "metric_definition": {
7 "id": "id"
8 },
9 "target_time": "2023-01-01T12:00:00Z",
10 "warning_target_time": "2023-01-01T12:00:00Z"
11 }
12 ],
13 "applies_to_id": "applies_to_id",
14 "created_date": "2023-01-01T12:00:00Z",
15 "display_id": "display_id",
16 "modified_date": "2023-01-01T12:00:00Z",
17 "sla": {
18 "id": "id",
19 "name": "name",
20 "status": "archived",
21 "display_id": "display_id"
22 },
23 "sla_policy_id": "sla_policy_id",
24 "stage": "stage",
25 "status": "status"
26 }
27}