Get case status summary Deprecated

GET /api/cases/status

Returns the number of cases that are open, closed, and in progress. Deprecated in 8.1.0. This API is deprecated and will be removed in a future release; use the find cases API instead. You must have read privileges for the Cases feature in the Management, Observability, or Security section of the Kibana feature privileges, depending on the owner of the cases you're seeking.

Query parameters

  • owner string | array[string]

    A filter to limit the response to a specific set of applications. If this parameter is omitted, the response contains information about all the cases that the user has access to read.

Responses

GET /api/cases/status
curl \
 -X GET https://localhost:5601/api/cases/status
Response examples (200)
{
  "count_closed_cases": 42,
  "count_in_progress_cases": 42,
  "count_open_cases": 42
}
Response examples (401)
{
  "error": "Unauthorized",
  "message": "string",
  "statusCode": 401
}