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()
queryParams = Chilkat::CkJsonObject.new()
queryParams.UpdateString("[\"the\"]","")
http.SetRequestHeader("Content-Type","application/json")
http.SetRequestHeader("X-Meili-Api-Key","masterKey")
# resp is a CkHttpResponse
resp = http.QuickRequestParams("GET","http://localhost:7700/indexes/indexUID/settings/stop-words",queryParams)
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 GET
-H "X-Meili-Api-Key: masterKey"
-H "Content-Type: application/json"
-d '["the"]'
http://localhost:7700/indexes/indexUID/settings/stop-words
Postman Collection Item JSON
{
"name": "Get stop-words",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "[\"the\"]"
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/stop-words",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"stop-words"
]
}
},
"response": [
]
}