Get current connectoredit

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

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.

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

Request URLedit

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

URL query parametersedit

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 requestedit

GET api/cases/configure

Response codeedit

200
Indicates a successful call.

Example responseedit

  "connector": {
    "id": "131d4448-abe0-4789-939d-8ef60680b498",
    "name": "Jira",
    "type": ".jira",
    "fields": null,
  },
  "closure_type": "close-by-user",
  "connector_name": "ServiceNow",
  "created_at": "2020-03-30T13:31:38.083Z",
  "created_by": {
    "email": "admin@hms.gov.uk",
    "full_name": "Mr Admin",
    "username": "admin"
  },
  "error": null,
  "updated_at": null,
  "updated_by": null,
  "version": "WzE3NywxXQ=="
}
=======
[
  {
    "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=="
  }
]
>>>>>>> 8bda004... [Security Solution][Cases] Updating the API docs for cases (#835)