Get current connector

edit

Retrieves the connectors currently used in the Elastic Security UI that the user has access to read.

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.

For more information on connectors, see Actions API (for pushing cases to external systems).

Request URL

edit

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

URL query parameters

edit
Name Type Description Required

owner

String or String[]

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

No

Example request

edit
GET api/cases/configure

Response code

edit
200
Indicates a successful call.

Example response

edit
[
  {
    "connector": {
      "id": "131d4448-abe0-4789-939d-8ef60680b498",
      "name": "Jira",
      "type": ".jira",
      "fields": null,
    },
    "closure_type": "close-by-user",
    "created_at": "2020-03-30T13:31:38.083Z",
    "created_by": {
      "email": "admin@hms.gov.uk",
      "full_name": "Mr Admin",
      "username": "admin"
    },
    "error": null,
    "id": "7349772f-421a-4de3-b8bb-2d9b22ccee30",
    "owner": "securitySolution",
    "updated_at": null,
    "updated_by": null,
    "version": "WzE3NywxXQ=="
  }
]