Deleting a list of synonyms
Use this API to delete a list of synonyms.
Requirement: OpenSearchServer v1.5
Call parameters
URL: /services/rest/index/{index_name}/synonyms/{list_name}
Method: DELETE
Header:
- Accept (optional returned type):
application/json
orapplication/xml
URL parameters:
- index_name (required): The name of the index.
- list_name (required): The name of the list to delete.
Success response
The list of synonyms has been deleted.
HTTP code:
200
Content (application/json):
{
"successful": true,
"info": "The item testlist has been deleted"
}
Error response
The command failed. The reason is provided in the content.
HTTP code:
500
Sample call
Using CURL:
curl -XDELETE http://localhost:8080/services/rest/index/my_index/synonyms/my_list
Using jQuery:
$.ajax({
type: "DELETE",
dataType: "json",
url: "http://localhost:8080/services/rest/index/my_index/synonyms/my_list"
}).done(function (data) {
console.log(data);
});