delete_document
Remove a specific document from an Elasticsearch index by providing the index name and document ID. This tool simplifies document deletion in Elasticsearch clusters.
Instructions
Delete 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"
}