SLAs APIs - Documentation for Helix Automation Console 19.11
Liam Parker
This topic describes the REST APIs for the Service Level Agreements in BMC Helix Automation Console.
The base URL for the SLAs API is:
GET/api/v1/config/slas
Gets all Service Level Agreements data.
Request body: No parameters
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 401 | Unauthorized |
| 500 | Internal Server Error |
Sample response
[ { "severity": 1, "deadline": 90, "threshold": 72 }
]PUT/api/v1/config/slas
Update an existing SLA level.
Request body: No parameters
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad Request |
| 401 | Unauthorized |
| 500 | Internal Server Error |
Sample response
[ { "severity": 1, "deadline": 90, "threshold": 72 }
]