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
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
List 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_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/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
}
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|