TCL / MeiliSearch v0.24 / Update searchable attributes
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]
# Use this online tool to generate code from sample JSON: Generate Code to Create JSON
# The following JSON is sent in the request body.
# [
# "title",
# "author"
# ]
set jarr [new_CkJsonArray]
CkJsonArray_AddStringAt $jarr -1 "title"
CkJsonArray_AddStringAt $jarr -1 "author"
CkHttp_SetRequestHeader $http "Content-Type" "application/json"
CkHttp_SetRequestHeader $http "X-Meili-Api-Key" "masterKey"
set sbRequestBody [new_CkStringBuilder]
CkJsonArray_EmitSb $jarr $sbRequestBody
# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "POST" "http://localhost:7700/indexes/indexUID/settings/searchable-attributes" $sbRequestBody "utf-8" "application/json" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonArray $jarr
delete_CkStringBuilder $sbRequestBody
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkJsonArray $jarr
delete_CkStringBuilder $sbRequestBody
Curl Command
curl -X POST
-H "X-Meili-Api-Key: masterKey"
-H "Content-Type: application/json"
-d '["title", "author"]'
http://localhost:7700/indexes/indexUID/settings/searchable-attributes
Postman Collection Item JSON
{
"name": "Update searchable attributes",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\"title\", \"author\"]"
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/searchable-attributes",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"searchable-attributes"
]
}
},
"response": [
]
}