Get statusedit

Returns the number of open and closed cases.

Console supports only Elasticsearch APIs. Console doesn’t allow interactions with Kibana APIs. You must use curl or another HTTP tool instead. For more information, refer to Run Elasticsearch API requests.

Request URLedit

GET <kibana host>:<port>/api/cases/status

URL query parametersedit

Name Type Description Required

owner

String or String[]

A filter to limit the retrieved case status statistics to a specific set of applications. If this parameter is omitted, the response’s statistics will represent all the cases that the user has access to read.

No

Example requestedit

GET api/cases/status

Response codeedit

200
Indicates a successful call.

Example responseedit

{
  "count_open_cases": 27,
  "count_in_progress_cases": 50,
  "count_closed_cases": 1198,
}