require 'chilkat' # This example assumes the Chilkat API to have been previously unlocked. # See Global Unlock Sample for sample code. http = Chilkat::CkHttp.new() http.SetRequestHeader("X-Meili-Api-Key","masterKey") resp = Chilkat::CkHttpResponse.new() success = http.HttpNoBody("DELETE","http://localhost:7700/indexes/indexUID/settings/displayed-attributes",resp) if (success == false) print http.lastErrorText() + "\n"; exit end print resp.get_StatusCode().to_s() + "\n"; print resp.bodyStr() + "\n";
curl -X DELETE -H "X-Meili-Api-Key: masterKey" http://localhost:7700/indexes/indexUID/settings/displayed-attributes
{
"name": "Reset displayed attributes",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/displayed-attributes",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"displayed-attributes"
]
}
},
"response": [
]
}