slas

Get

GET
Gets an SLA.

Query parameters

idstringRequired
The ID of the SLA to get.

Response

This endpoint returns an object
sla
object
GET
1curl -G https://api.devrev.ai/slas.get \
2 -H "Authorization: <apiKey>" \
3 -d id=id
200
Retrieved
1{
2 "sla": {
3 "id": "id",
4 "name": "name",
5 "status": "archived",
6 "compensation": {
7 "compensation": {
8 "key": "value"
9 }
10 },
11 "created_date": "2023-01-01T12:00:00Z",
12 "description": "description",
13 "display_id": "display_id",
14 "evaluation_period": "monthly",
15 "modified_date": "2023-01-01T12:00:00Z",
16 "policies": [
17 {}
18 ]
19 }
20}