Chilkat Online Tools

Unicode C++ / MeiliSearch v0.24 / Get stop-words

Back to Collection Items

void ChilkatSample(void)
    {
    queryParams.UpdateString(L"[\"the\"]",L"");
    }

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