Chilkat Online Tools

Classic ASP / MeiliSearch v0.24 / Get stop-words

Back to Collection Items

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set http = Server.CreateObject("Chilkat_9_5_0.Http")

set queryParams = Server.CreateObject("Chilkat_9_5_0.JsonObject")
success = queryParams.UpdateString("[""the""]","")

http.SetRequestHeader "Content-Type","application/json"
http.SetRequestHeader "X-Meili-Api-Key","masterKey"

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.QuickRequestParams("GET","http://localhost:7700/indexes/indexUID/settings/stop-words",queryParams)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"


%>
</body>
</html>

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": [
  ]
}