Creates or updates a synonym set Added in 8.10.0

PUT /_synonyms/{id}

Path parameters

  • id string Required

    The id of the synonyms set to be created or updated

application/json

Body Required

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
PUT /_synonyms/{id}
curl \
 -X PUT http://api.example.com/_synonyms/{id} \
 -H "Content-Type: application/json" \
 -d '{"synonyms_set":{"id":"string","synonyms":"string"}}'
Request examples
{
  "synonyms_set": {
    "id": "string",
    "synonyms": "string"
  }
}
Response examples (200)
{
  "result": "created",
  "reload_analyzers_details": {
    "reload_details": [
      {
        "index": "string",
        "reloaded_analyzers": [
          "string"
        ],
        "reloaded_node_ids": [
          "string"
        ]
      }
    ],
    "_shards": {
      "failed": 42.0,
      "successful": 42.0,
      "total": 42.0,
      "failures": [
        {
          "index": "string",
          "node": "string",
          "reason": {
            "type": "string",
            "reason": "string",
            "stack_trace": "string",
            "caused_by": {},
            "root_cause": [
              {}
            ],
            "suppressed": [
              {}
            ]
          },
          "shard": 42.0,
          "status": "string"
        }
      ],
      "skipped": 42.0
    }
  }
}