Query parameters
-
filter string
Filters the returned results according to the value of the specified field.
Uses the
so type.field name:field
value syntax, whereso type
can be:exception-list
: Specify a space-aware exception list.exception-list-agnostic
: Specify an exception list that is shared across spaces.
-
namespace_type array[string]
Determines whether the returned containers are Kibana associated with a Kibana space or available in all spaces (
agnostic
orsingle
)Values are
agnostic
orsingle
. Default value is["single"]
. -
page integer
The page number to return
Minimum value is
1
. -
per_page integer
The number of exception lists to return per page
Minimum value is
1
. -
sort_field string
Determines which field is used to sort the results
-
sort_order string
Determines the sort order, which can be
desc
orasc
Values are
desc
orasc
.
Responses
-
200 application/json; Elastic-Api-Version=2023-10-31
Successful response
-
400 application/json; Elastic-Api-Version=2023-10-31
Invalid input data response
-
401 application/json; Elastic-Api-Version=2023-10-31
Unsuccessful authentication response
-
403 application/json; Elastic-Api-Version=2023-10-31
Not enough privileges response
-
500 application/json; Elastic-Api-Version=2023-10-31
Internal server error response
GET /api/exception_lists/_find
curl \
-X GET https://localhost:5601/api/exception_lists/_find
Response examples (200)
{
"data": [
{
"_version": "string",
"created_at": "2024-05-04T09:42:00+00:00",
"created_by": "string",
"description": "string",
"id": "string",
"immutable": true,
"list_id": "string",
"meta": {},
"name": "string",
"namespace_type": "single",
"os_types": [
"linux"
],
"tags": [
"string"
],
"tie_breaker_id": "string",
"type": "detection",
"updated_at": "2024-05-04T09:42:00+00:00",
"updated_by": "string",
"version": 42
}
],
"page": 42,
"per_page": 42,
"total": 42
}
Response examples (400)
Security_exceptions_api_platformerrorresponse (generated)
{
"error": "string",
"message": "string",
"statusCode": 42
}
{
"message": "string",
"status_code": 42
}
Response examples (401)
{
"error": "string",
"message": "string",
"statusCode": 42
}
Response examples (403)
{
"error": "string",
"message": "string",
"statusCode": 42
}
Response examples (500)
{
"message": "string",
"status_code": 42
}