Get reportersedit

Returns all case reporters (users who opened cases).

The Kibana 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 Console.

Request URLedit

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

URL query parametersedit

Name Type Description Required

owner

String or String[]

A filter to limit the retrieved reporters to a specific set of applications. If this parameter is omitted, the response will contain all reporters that the user has access to read.

No

Example requestedit

GET api/cases/reporters

Response codeedit

200
Indicates a successful call.

Example responseedit

[
  {
    "full_name": "Alan Hunley",
    "email": "ahunley@imf.usa.gov",
    "username": "ahunley"
  },
  {
    "full_name": "Rat Hustler",
    "email": "jrhustler@aol.com",
    "username": "rhustler"
  }
]