Triggers a reload of the search analyzers for all indices so that synonym changes take effect without requiring a full reindex.
Call this after creating, updating, or deleting synonyms — changes saved via the synonym CRUD endpoints do not become active in search until the analyzers are reloaded.
Requires the synonym:read or search.read permission.
Request
GET /synonym/reload
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Example Request
GET /synonym/reload
Authorization: Bearer <token>
Response
Returns the result of the analyzer reload operation from the search engine.
Example Response
{
"ok": true
}
