Chilkat Online Tools

TCL / MeiliSearch v0.24 / Reset distinct attribute

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

CkHttp_SetRequestHeader $http "X-Meili-Api-Key" "masterKey"

# resp is a CkHttpResponse
set resp [CkHttp_QuickRequest $http "DELETE" "http://localhost:7700/indexes/indexUID/settings/distinct-attribute"]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http

Curl Command

curl -X DELETE
	-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/settings/distinct-attribute

Postman Collection Item JSON

{
  "name": "Reset distinct attribute",
  "request": {
    "method": "DELETE",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/indexes/{{indexUID}}/settings/distinct-attribute",
      "host": [
        "{{url}}"
      ],
      "path": [
        "indexes",
        "{{indexUID}}",
        "settings",
        "distinct-attribute"
      ]
    }
  },
  "response": [
  ]
}