Dim fso, outFile Set fso = CreateObject("Scripting.FileSystemObject") 'Create a Unicode (utf-16) output text file. Set outFile = fso.CreateTextFile("output.txt", True, True) ' This example assumes the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. set http = CreateObject("Chilkat.Http") http.SetRequestHeader "X-Meili-Api-Key","masterKey" set sbResponseBody = CreateObject("Chilkat.StringBuilder") success = http.QuickGetSb("http://localhost:7700/indexes/indexUID/settings/distinct-attribute",sbResponseBody) If (success = 0) Then outFile.WriteLine(http.LastErrorText) WScript.Quit End If outFile.WriteLine("Response status code = " & http.LastStatus) outFile.WriteLine(sbResponseBody.GetAsString()) outFile.Close
curl -X GET -H "X-Meili-Api-Key: masterKey" http://localhost:7700/indexes/indexUID/settings/distinct-attribute
{
"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": [
]
}