// This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loHttp = createobject("CkHttp") loHttp.SetRequestHeader("X-Meili-Api-Key","masterKey") loSbResponseBody = createobject("CkStringBuilder") llSuccess = loHttp.QuickGetSb("http://localhost:7700/indexes/indexUID/settings/displayed-attributes",loSbResponseBody) if (llSuccess = .F.) then ? loHttp.LastErrorText release loHttp release loSbResponseBody return endif ? "Response status code = " + str(loHttp.LastStatus) ? loSbResponseBody.GetAsString() release loHttp release loSbResponseBody
curl -X GET -H "X-Meili-Api-Key: masterKey" http://localhost:7700/indexes/indexUID/settings/displayed-attributes
{
"name": "Get displayed attributes",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/displayed-attributes",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"displayed-attributes"
]
}
},
"response": [
]
}