List asset criticality records
editList asset criticality records
editRetrieve a list of asset criticality records.
Use the query parameters to filter and sort the results as needed. By default, the first page is returned, with 10 results per page.
Request URL
editGET <kibana host>:<port>/api/asset_criticality/list
URL query parameters
editName | Type | Description | Required |
---|---|---|---|
|
String |
The field to sort the results by, which must be one of the following:
|
No |
|
String |
The order to sort the results in, which must be either |
No |
|
Number |
The page number to return, which must be at least 1. Defaults to |
No |
|
Number |
The number of results to return per page, which must be between 1 and 1000. Defaults to |
No |
|
String |
A KQL query to filter results by, for example |
No |
Example requests
editGET api/asset_criticality/list?kuery=criticality_level:high_impact%20OR%20criticality_level:medium_impact
Response code
edit-
200
- Indicates a successful call.
Example response
edit{ "records": [ { "id_field": "host.name", "id_value": "my_other_host", "criticality_level": "medium_impact", "@timestamp": "2024-08-02T14:40:35.705Z" }, { "id_field": "host.name", "id_value": "my_host", "criticality_level": "high_impact", "@timestamp": "2024-08-02T11:15:34.290Z" } ], "total": 2, "page": 1, "per_page": 10 }