delete-document
Remove a specific document from a Meilisearch index by providing its unique ID and the index identifier to manage data efficiently within the search engine.
Instructions
Delete a document by its ID from a Meilisearch index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
documentId | Yes | ID of the document to delete | |
indexUid | Yes | Unique identifier of the index |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"documentId": {
"description": "ID of the document to delete",
"type": "string"
},
"indexUid": {
"description": "Unique identifier of the index",
"type": "string"
}
},
"required": [
"indexUid",
"documentId"
],
"type": "object"
}