get_document
Retrieve a specific document by its ID and index from Elasticsearch clusters. Ideal for targeted data extraction and document access in Elasticsearch environments.
Instructions
Get a document by ID.
Args:
index: Name of the index
id: Document ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"title": "Id",
"type": "string"
},
"index": {
"title": "Index",
"type": "string"
}
},
"required": [
"index",
"id"
],
"type": "object"
}