Retrieves an exception list summary

GET /api/exception_lists/summary

Query parameters

  • id string

    Exception list's identifier generated upon creation

    Minimum length is 1. Format should match the following pattern: ^(?! *$).+$.

  • list_id string

    Exception list's human readable identifier

    Minimum length is 1. Format should match the following pattern: ^(?! *$).+$.

  • Determines whether the exception container is available in all Kibana spaces or just the space in which it is created, where:

    • single: Only available in the Kibana space in which it is created.
    • agnostic: Available in all Kibana spaces.

    Values are agnostic or single. Default value is single.

  • filter string

    Search filter clause

Responses

GET /api/exception_lists/summary
curl \
 -X GET http://localhost:5622/api/exception_lists/summary
Response examples (200)
{
  "linux": 42,
  "macos": 42,
  "total": 42,
  "windows": 42
}
Response examples (400)
{
  "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 (404)
{
  "message": "string",
  "status_code": 42
}
Response examples (500)
{
  "message": "string",
  "status_code": 42
}