Back to Collection Items
require 'chilkat'
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = Chilkat::CkHttp.new()
# Use this online tool to generate code from sample JSON: Generate Code to Create JSON
# The following JSON is sent in the request body.
# {}
json = Chilkat::CkJsonObject.new()
http.SetRequestHeader("Content-Type","application/json")
http.SetRequestHeader("X-Meili-Api-Key","masterKey")
sbRequestBody = Chilkat::CkStringBuilder.new()
json.EmitSb(sbRequestBody)
# resp is a CkHttpResponse
resp = http.PTextSb("DELETE","http://localhost:7700/indexes/indexUID/settings/synonyms",sbRequestBody,"utf-8","application/json",false,false)
if (http.get_LastMethodSuccess() == false)
print http.lastErrorText() + "\n";
exit
end
print resp.get_StatusCode().to_s() + "\n";
print resp.bodyStr() + "\n";
Curl Command
curl -X DELETE
-H "X-Meili-Api-Key: masterKey"
-H "Content-Type: application/json"
-d '"["wizard"]"'
http://localhost:7700/indexes/indexUID/settings/synonyms
Postman Collection Item JSON
{
"name": "Reset synonyms",
"request": {
"method": "DELETE",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "\"[\"wizard\"]\""
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/synonyms",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"synonyms"
]
}
},
"response": [
]
}