v53

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-076771,7565.2 MB
Security Entity Analytics API

Get an asset criticality record

Spaces method and path for this operation:

<div><span class="operation-verb get">get</span>&nbsp;<span class="operation-path">/s/{space_id}/api/asset_criticality</span></div>

Refer to Spaces for more information.

Deprecated in 9.4.0. Get the asset criticality record for a specific entity.

get/api/asset_criticality

Query parameters

id_valuestring required

The ID value of the asset.

id_field'host.name' | 'user.name' | 'service.name' | 'entity.id' required

The field representing the ID.

Response

Successful response

id_field'host.name' | 'user.name' | 'service.name' | 'entity.id' required
id_valuestring required

The ID value of the asset.

criticality_level'low_impact' | 'medium_impact' | 'high_impact' | 'extreme_impact' required

The criticality level of the asset.

@timestampstring date-time required

The time the record was created or updated.

Example response

{
  "@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"
}