IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
List action types API
editList action types API
editRetrieves a list of all action types.
Request
editGET <kibana host>:<port>/api/actions/list_action_types
GET <kibana host>:<port>/s/<space_id>/api/actions/list_action_types
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.
Response code
edit-
200
- Indicates a successful call.
Example
edit$ curl -X GET api/actions/list_action_types
The API returns the following:
[ { "id": ".email", "name": "Email", "minimumLicenseRequired": "gold", "enabled": false, "enabledInConfig": true, "enabledInLicense": false }, { "id": ".index", "name": "Index", "minimumLicenseRequired": "basic", "enabled": true, "enabledInConfig": true, "enabledInLicense": true } ]
|
|
|
|
|
|
|
|
|
|
|