List connector types API
editList connector types API
editRetrieves a list of all connector types.
For the most up-to-date API details, refer to the open API specification.
Request
editGET <kibana host>:<port>/api/actions/connector_types
GET <kibana host>:<port>/s/<space_id>/api/actions/connector_types
Prerequisites
editYou do not need any Kibana feature privileges to run this API.
Path parameters
edit-
space_id
-
(Optional, string) An identifier for the space. If
space_id
is not provided in the URL, the default space is used.
Query parameters
edit-
feature_id
- (Optional, string) Filters list of connector types to those that support the feature id.
Response codes
edit-
200
- Indicates a successful call.
Examples
editGET 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": true, "supported_feature_ids": ["alerting"] }, { "id": ".index", "name": "Index", "minimum_license_required": "basic", "enabled": true, "enabled_in_config": true, "enabled_in_license": true, "supported_feature_ids": ["alerting"] }, ... ]
|
|
|
|
|
|
|
|
|
|
|
|
|