Classic ASP / MeiliSearch v0.24 / Reset displayed attributes
Back to Collection Items
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
set http = Server.CreateObject("Chilkat.Http")
http.SetRequestHeader "X-Meili-Api-Key","masterKey"
set resp = Server.CreateObject("Chilkat.HttpResponse")
success = http.HttpNoBody("DELETE","http://localhost:7700/indexes/indexUID/settings/displayed-attributes",resp)
If (success = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
Response.End
End If
Response.Write "<pre>" & Server.HTMLEncode( resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"
%>
</body>
</html>
Curl Command
curl -X DELETE
-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/settings/displayed-attributes
Postman Collection Item JSON
{
"name": "Reset displayed attributes",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/displayed-attributes",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"displayed-attributes"
]
}
},
"response": [
]
}