update-settings
Modify settings for a Meilisearch index by specifying the index UID and a JSON object of updated configurations, ensuring precise control over search behavior and index properties.
Instructions
Update settings for a Meilisearch index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | Unique identifier of the index | |
settings | Yes | JSON object containing settings to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexUid": {
"description": "Unique identifier of the index",
"type": "string"
},
"settings": {
"description": "JSON object containing settings to update",
"type": "string"
}
},
"required": [
"indexUid",
"settings"
],
"type": "object"
}