FailedCIs
To get the top K CIs whose incident resolution failed.
| API | FailedCIs |
| Purpose | Get the Top K CIs whose incident resolution failed. |
| API URL | https://<API URL>:<API Port>/v2/incident/failedCIs/{orgentityid}/count/{count} |
| Authentication type | Basic/Token |
| Method Type | GET |
| Input Params in Query String: |
You can pass the following filters in the URL to get desired data:
|
Parameters Required in Request body of API
| Column | Column type | Remarks |
| orgentityid | string | The organization entity ID. |
| count | integer | It defines how many results should be retrieved. |
Output:
{
"Count": 2,
"Result": [
"my_CI_1",
"my_CI_2"
],
"Status": "Success",
"Message": "Success"
}
Parameters Returned in Response of API
| Column | Column type | Value | Remarks |
| Count | int | count | This field contains number of count of CI’s failed |
| Result | array | Comma separate array | This field contains the list of CIs whose incident resolution failed |
| Status | string | Success/Fail | This field provides status |
| Message | string | Message | This field provides Message |