get_kibana_api_detail
Retrieve detailed information for a specific Kibana API endpoint by specifying the HTTP method and path to streamline integration and debugging processes.
Instructions
Get details for a specific Kibana API endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | Yes | HTTP method, e.g. GET, POST, PUT, DELETE | |
path | Yes | API path, e.g. /api/actions/connector_types |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"method": {
"description": "HTTP method, e.g. GET, POST, PUT, DELETE",
"type": "string"
},
"path": {
"description": "API path, e.g. /api/actions/connector_types",
"type": "string"
}
},
"required": [
"method",
"path"
],
"type": "object"
}