Get a connector information

GET /api/actions/connector/{connectorId}

Path parameters

Responses

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

    Indicates a successful call.

    The properties vary depending on the connector type.

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

    Authorization information is missing or invalid.

    Hide response attributes Show response attributes object
  • 404 application/json; Elastic-Api-Version=2023-10-31

    Object is not found.

    Hide response attributes Show response attributes object
GET /api/actions/connector/{connectorId}
curl \
 -X GET https://localhost:5601/api/actions/connector/df770e30-8b8b-11ed-a780-3b746c987a81
Response examples (200)
{
  "id": "df770e30-8b8b-11ed-a780-3b746c987a81",
  "name": "my_server_log_connector",
  "config": {},
  "is_deprecated": false,
  "is_preconfigured": false,
  "is_system_action": false,
  "connector_type_id": ".server-log",
  "is_missing_secrets": false
}
Response examples (401)
{
  "error": "Unauthorized",
  "message": "string",
  "statusCode": 401
}
Response examples (404)
{
  "error": "Not Found",
  "message": "Saved object [action/baf33fc0-920c-11ed-b36a-874bd1548a00] not found",
  "statusCode": 404
}