Spaces method and path for this operation:
Refer to Spaces for more information.
List entities records, paging, sorting and filtering as needed.
Query parameters
-
Field to sort results by.
-
Sort order.
Values are
ascordesc. -
Page number to return (1-indexed).
Minimum value is
1. -
Number of entities per page.
Minimum value is
1, maximum value is10000. -
An ES query to filter by.
-
Entity types to include in the results.
Values are
user,host, orservice.
Responses
-
Entities returned successfully
Hide response attributes Show response attributes object
-
Debug information about the Elasticsearch query executed.
-
Current page number.
Minimum value is
1. -
Number of entities per page.
Minimum value is
1, maximum value is1000. -
The entity records for this page.
An entity record from the Entity Store. The
entitynamespace is a root-level field in the latest index, unlike source logs where it is nested underhost,user, orservice.One of: An entity record representing a user, stored in the Entity Store latest index.
Hide attributes Show attributes
-
The time the entity record was last updated.
-
Elastic Common Schema (ECS) user fields collected on the entity.
Hide user attributes Show user attributes object
-
Observed user domains.
-
Observed email addresses.
-
Observed full names of the user.
-
Observed user hashes.
-
Observed user IDs.
-
Primary user name.
-
Hide risk attributes Show risk attributes object
-
The time at which the risk score was calculated.
-
Lexical description of the entity's risk.
Values are
Unknown,Low,Moderate,High, orCritical. -
The raw numeric value of the given entity's risk score.
-
The normalized numeric value of the given entity's risk score. Useful for comparing with other entities.
Minimum value is
0, maximum value is100. -
The number of risk input documents that contributed to the Category 1 score (
category_1_score). -
The contribution of Category 1 to the overall risk score (
calculated_score). Category 1 contains Detection Engine Alerts. -
The criticality level of the asset.
Values are
low_impact,medium_impact,high_impact, orextreme_impact. -
The identifier field defining this risk score. Coupled with
id_value, uniquely identifies the entity being scored. -
The identifier value defining this risk score. Coupled with
id_field, uniquely identifies the entity being scored. -
A list of the highest-risk documents contributing to this risk score. Useful for investigative purposes.
Hide inputs attributes Show inputs attributes object
A generic representation of a document contributing to a Risk Score.
-
The risk category of the risk input document.
-
A human-readable description of the risk input document.
-
The unique identifier (
_id) of the original source document -
The unique index (
_index) of the original source document -
The weighted risk score of the risk input document.
Minimum value is
0, maximum value is100. -
The @timestamp of the risk input document.
-
-
-
Observed roles assigned to the user.
-
An entity record representing a host, stored in the Entity Store latest index.
Hide attributes Show attributes
-
The time the entity record was last updated.
-
Elastic Common Schema (ECS) host fields collected on the entity.
Hide host attributes Show host attributes object
-
Observed CPU architectures.
-
Observed host domains.
-
Observed hostnames.
-
Observed host IDs.
-
Observed IP addresses.
-
Observed MAC addresses.
-
Primary host name.
-
Hide risk attributes Show risk attributes object
-
The time at which the risk score was calculated.
-
Lexical description of the entity's risk.
Values are
Unknown,Low,Moderate,High, orCritical. -
The raw numeric value of the given entity's risk score.
-
The normalized numeric value of the given entity's risk score. Useful for comparing with other entities.
Minimum value is
0, maximum value is100. -
The number of risk input documents that contributed to the Category 1 score (
category_1_score). -
The contribution of Category 1 to the overall risk score (
calculated_score). Category 1 contains Detection Engine Alerts. -
The criticality level of the asset.
Values are
low_impact,medium_impact,high_impact, orextreme_impact. -
The identifier field defining this risk score. Coupled with
id_value, uniquely identifies the entity being scored. -
The identifier value defining this risk score. Coupled with
id_field, uniquely identifies the entity being scored. -
A list of the highest-risk documents contributing to this risk score. Useful for investigative purposes.
Hide inputs attributes Show inputs attributes object
A generic representation of a document contributing to a Risk Score.
-
The risk category of the risk input document.
-
A human-readable description of the risk input document.
-
The unique identifier (
_id) of the original source document -
The unique index (
_index) of the original source document -
The weighted risk score of the risk input document.
Minimum value is
0, maximum value is100. -
The @timestamp of the risk input document.
-
-
-
Observed host types.
-
An entity record representing a service, stored in the Entity Store latest index.
Hide attributes Show attributes
-
The time the entity record was last updated.
-
Elastic Common Schema (ECS) service fields collected on the entity.
Hide service attributes Show service attributes object
-
Primary service name.
-
Hide risk attributes Show risk attributes object
-
The time at which the risk score was calculated.
-
Lexical description of the entity's risk.
Values are
Unknown,Low,Moderate,High, orCritical. -
The raw numeric value of the given entity's risk score.
-
The normalized numeric value of the given entity's risk score. Useful for comparing with other entities.
Minimum value is
0, maximum value is100. -
The number of risk input documents that contributed to the Category 1 score (
category_1_score). -
The contribution of Category 1 to the overall risk score (
calculated_score). Category 1 contains Detection Engine Alerts. -
The criticality level of the asset.
Values are
low_impact,medium_impact,high_impact, orextreme_impact. -
The identifier field defining this risk score. Coupled with
id_value, uniquely identifies the entity being scored. -
The identifier value defining this risk score. Coupled with
id_field, uniquely identifies the entity being scored. -
A list of the highest-risk documents contributing to this risk score. Useful for investigative purposes.
Hide inputs attributes Show inputs attributes object
A generic representation of a document contributing to a Risk Score.
-
The risk category of the risk input document.
-
A human-readable description of the risk input document.
-
The unique identifier (
_id) of the original source document -
The unique index (
_index) of the original source document -
The weighted risk score of the risk input document.
Minimum value is
0, maximum value is100. -
The @timestamp of the risk input document.
-
-
-
-
-
Total number of entities matching the query.
Minimum value is
0.
-
curl \
--request GET 'https://localhost:5601/api/entity_store/entities/list?entity_types=user' \
--header "Authorization: $API_KEY"
{
"page": 1,
"per_page": 10,
"records": [
{
"entity": {
"id": "web-server-01",
"name": "web-server-01",
"type": "host"
},
"host": {
"ip": [
"10.0.0.1"
],
"name": "web-server-01"
}
}
],
"total": 1
}