Swift / MeiliSearch v0.24 / Reset distinct attribute
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()
var success: Bool
http.SetRequestHeader("X-Meili-Api-Key", value: "masterKey")
var resp: CkoHttpResponse? = http.QuickRequest("DELETE", url: "http://localhost:7700/indexes/indexUID/settings/distinct-attribute")
if http.LastMethodSuccess == false {
print("\(http.LastErrorText)")
return
}
print("\(resp!.StatusCode.intValue)")
print("\(resp!.BodyStr)")
resp = nil
}
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": [
]
}