List connector types APIedit
Retrieves a list of all connector types.
For the most up-to-date API details, refer to the open API specification. For a preview, check out Connector APIs.
Requestedit
GET <kibana host>:<port>/api/actions/connector_types
GET <kibana host>:<port>/s/<space_id>/api/actions/connector_types
Prerequisitesedit
You do not need any Kibana feature privileges to run this API.
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.
Query parametersedit
-
feature_id
- (Optional, string) Filters list of connector types to those that support the feature id.
Response codesedit
-
200
- Indicates a successful call.
Examplesedit
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": 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"] }, ... ]
|
|
|
|
|
|
|
|
|
|
|
|
|