Get reporters API

edit

Returns information about the users who opened cases.

Request

edit

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

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

Prerequisites

edit

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

edit
owner
(Optional, string or array of strings) A filter to limit the retrieved reporters to a specific set of applications. If this parameter is omitted, the response will contain all reporters from cases that the user has access to read.

Response codes

edit
200
Indicates a successful call.

Examples

edit

Returns all case reporters:

GET api/cases/reporters

The API returns a JSON object with the retrieved reporters. For example:

[
  {
    "full_name": "Alan Hunley",
    "email": "[email protected]",
    "username": "ahunley"
  },
  {
    "full_name": "Rat Hustler",
    "email": "[email protected]",
    "username": "rhustler"
  }
]