Get connector types Deprecated

GET /api/actions/list_action_types

Deprecated in 7.13.0. Use the get all connector types API instead.

Responses

  • 200 application/json; Elastic-Api-Version=2023-10-31

    Indicates a successful call.

    Hide response attributes Show response attributes object

    The properties vary for each connector type.

    • enabled boolean

      Indicates whether the connector type is enabled in Kibana.

    • Indicates whether the connector type is enabled in the Kibana .yml file.

    • Indicates whether the connector is enabled in the license.

    • id string

      The unique identifier for the connector type.

    • The license that is required to use the connector type.

    • name string

      The name of the connector type.

  • 401 application/json; Elastic-Api-Version=2023-10-31

    Authorization information is missing or invalid.

    Hide response attributes Show response attributes object
GET /api/actions/list_action_types
curl \
 -X GET https://localhost:5601/api/actions/list_action_types
Response examples (200)
[
  {
    "enabled": true,
    "enabledInConfig": true,
    "enabledInLicense": true,
    "id": "string",
    "minimumLicenseRequired": "string",
    "name": "string"
  }
]
Response examples (401)
{
  "error": "Unauthorized",
  "message": "string",
  "statusCode": 401
}