Chilkat Online Tools

lianja / MeiliSearch v0.24 / Get distinct attribute

Back to Collection Items

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

loHttp = createobject("CkHttp")

loHttp.SetRequestHeader("X-Meili-Api-Key","masterKey")

loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("http://localhost:7700/indexes/indexUID/settings/distinct-attribute",loSbResponseBody)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loSbResponseBody
    return
endif

? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()


release loHttp
release loSbResponseBody

Curl Command

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

Postman Collection Item JSON

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