List connector types APIedit

Retrieves a list of all connector types.

Requestedit

GET <kibana host>:<port>/api/actions/connector_types

GET <kibana host>:<port>/s/<space_id>/api/actions/connector_types

Path parametersedit

space_id
(Optional, string) An identifier for the space. If space_id is not provided in the URL, the default space is used.

Response codeedit

200
Indicates a successful call.

Exampleedit

$ curl -X GET api/actions/connector_types

The API returns the following:

[
  {
    "id": ".email", 
    "name": "Email", 
    "minimum_license_required": "gold", 
    "enabled": false, 
    "enabled_in_config": true, 
    "enabled_in_license": false 
  },
  {
    "id": ".index",
    "name": "Index",
    "minimum_license_required": "basic",
    "enabled": true,
    "enabled_in_config": true,
    "enabled_in_license": true
  }
]

id - The unique ID of the connector type.

name - The name of the connector type.

minimum_license_required - The license required to use the connector type.

enabled - Specifies if the connector type is enabled or disabled in Kibana.

enabled_in_config - Specifies if the connector type is enabled or enabled in the Kibana .yml file.

enabled_in_license - Specifies if the connector type is enabled or disabled in the license.