Security Entity Analytics API
List asset criticality records
Spaces method and path for this operation:
<div><span class="operation-verb get">get</span> <span class="operation-path">/s/{space_id}/api/asset_criticality/list</span></div>Refer to Spaces for more information.
Deprecated in 9.4.0. List asset criticality records, paging, sorting and filtering as needed.
get/api/asset_criticality/list
Query parameters
sort_field'id_value' | 'id_field' | 'criticality_level' | '@timestamp'
The field to sort by.
sort_direction'asc' | 'desc'
The order to sort by.
pageinteger
The page number to return.
per_pageinteger
The number of records to return per page.
kuerystring
The kuery to filter by.
Response
Successfully retrieved asset criticality records
Example response
{
"page": 1,
"per_page": 10,
"records": [
{
"@timestamp": "2024-08-02T14:40:35.705Z",
"asset": {
"criticality": "medium_impact"
},
"criticality_level": "medium_impact",
"host": {
"asset": {
"criticality": "medium_impact"
},
"name": "my_other_host"
},
"id_field": "host.name",
"id_value": "my_other_host"
},
{
"@timestamp": "2024-08-02T11:15:34.290Z",
"asset": {
"criticality": "high_impact"
},
"criticality_level": "high_impact",
"host": {
"asset": {
"criticality": "high_impact"
},
"name": "my_host"
},
"id_field": "host.name",
"id_value": "my_host"
}
],
"total": 2
}