Reset stop-words

DELETE /indexes/{indexUid}/settings/stop-words

Reset the list of stop-words of an index to its default value ([]).

Path parameters

  • indexUid string Required

    Index Unique Identifier

Responses

  • 202 application/json

    Accepted

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
  • 404

    Not Found

DELETE /indexes/{indexUid}/settings/stop-words
curl \
 -X DELETE https://example.meilisearch.com:7700/indexes/movies/settings/stop-words \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (202)
{
  "taskUid": 0,
  "indexUid": "movies",
  "status": "enqueued",
  "type": "settingsUpdate",
  "enqueuedAt": "2021-01-01T09:39:00.000000Z"
}
Response examples (401)
{
  "message": "The Authorization header is missing. It must use the bearer authorization method.",
  "code": "missing_authorization_header",
  "type": "auth",
  "link": "https://docs.meilisearch.com/errors#missing_authorization_header"
}