Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
http.SetRequestHeader("X-Meili-Api-Key","masterKey")
sbResponseBody := chilkat.NewStringBuilder()
success = http.QuickGetSb("http://localhost:7700/indexes/indexUID/settings/searchable-attributes",sbResponseBody)
if success == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
return
}
fmt.Println("Response status code = ", http.LastStatus())
fmt.Println(*sbResponseBody.GetAsString())
http.DisposeHttp()
sbResponseBody.DisposeStringBuilder()
Curl Command
curl -X GET
-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/settings/searchable-attributes
Postman Collection Item JSON
{
"name": "Get searchable attributes",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/searchable-attributes",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"searchable-attributes"
]
}
},
"response": [
]
}