Find connectors

edit

Retrieves a paginated subset of all connectors.

The Kibana Console supports only Elasticsearch APIs. You cannot interact with the Kibana APIs with the Console and must use curl or another HTTP tool instead. For more information, refer to Console.

Only ServiceNow, Jira, and IBM Resilient connectors are returned. For more information on connectors, see Actions API (for pushing cases to external systems).

Request URL

edit

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

Example request

edit
GET api/cases/configure/connectors/_find

Response code

edit
200
Indicates a successful call.

Response payload

edit

A JSON object describing the connectors and their settings.

Example response

edit
{
  "page": 1,
  "perPage": 20,
  "total": 2,
  "data": [
    {
      "id": "61787f53-4eee-4741-8df6-8fe84fa616f7",
      "actionTypeId": ".servicenow",
      "name": "ServiceNow",
      "config": {
        "apiUrl": "https://dev78437.service-now.com"
      },
      "referencedByCount": 0
    },
    {
      "id": "131d4448-abe0-4789-939d-8ef60680b498",
      "actionTypeId": ".servicenow",
      "name": "Defector",
      "config": {
        "apiUrl": "https://dev87359.service-now.com",
      },
      "referencedByCount": 0
    }
  ]
}