Find connectorsedit

Retrieves a paginated subset of all connectors.

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

Request URLedit

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

Example requestedit

GET api/cases/configure/connectors/_find

Response codeedit

200
Indicates a successful call.

Response payloadedit

A JSON object describing the connectors and their settings.

Example responseedit

{
  "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
    }
  ]
}