IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
List connector types API
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
List connector types API
editRetrieves a list of all connector types.
Request
editGET <kibana host>:<port>/api/actions/connector_types
GET <kibana host>:<port>/s/<space_id>/api/actions/connector_types
Path parameters
edit-
space_id -
(Optional, string) An identifier for the space. If
space_idis not provided in the URL, the default space is used.
Response code
edit-
200 - Indicates a successful call.
Example
edit$ 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
}
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|