Get asset criticality record

edit

Retrieve a single asset criticality record by ID field and ID value.

Request URL

edit

GET <kibana host>:<port>/api/asset_criticality

URL query parameters

edit
Name Type Description Required

id_field

String

The field that contains the entity ID. This must be either user.name or host.name.

Yes

id_value

String

The ID (host name or user name) of the entity specified in the id_field field.

Yes

Example requests

edit
GET /api/asset_criticality?id_field=host.name&id_value=my_host

Response code

edit
200
Indicates a successful call.
404
Indicates the criticality record was not found.

Example response

edit
{
  "id_field": "host.name",
  "id_value": "my_host",
  "criticality_level": "high_impact",
  "@timestamp": "2024-08-02T11:15:34.290Z"
}