execute_kb_api
Run custom API requests in Kibana with multi-space support, enabling flexible data interactions via specified methods, paths, and parameters.
Instructions
Execute a custom API request for Kibana with multi-space support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | ||
method | Yes | ||
params | No | ||
path | Yes | ||
space | No | Target Kibana space (optional, defaults to configured space) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {},
"method": {
"enum": [
"GET",
"POST",
"PUT",
"DELETE"
],
"type": "string"
},
"params": {
"additionalProperties": {
"type": [
"string",
"number",
"boolean"
]
},
"type": "object"
},
"path": {
"type": "string"
},
"space": {
"description": "Target Kibana space (optional, defaults to configured space)",
"type": "string"
}
},
"required": [
"method",
"path"
],
"type": "object"
}