update-settings
Modify index settings in Meilisearch by specifying the index UID and new configurations to customize search behavior and performance.
Instructions
Update settings for an index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | ||
settings | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"indexUid": {
"type": "string"
},
"settings": {
"additionalProperties": true,
"type": "object"
}
},
"required": [
"indexUid",
"settings"
],
"type": "object"
}