Back to Collection Items
import sys
import chilkat
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = chilkat.CkHttp()
http.SetRequestHeader("X-Meili-Api-Key","masterKey")
sbResponseBody = chilkat.CkStringBuilder()
success = http.QuickGetSb("http://localhost:7700/indexes/indexUID/settings/synonyms",sbResponseBody)
if (success == False):
print(http.lastErrorText())
sys.exit()
print("Response status code = " + str(http.get_LastStatus()))
print(sbResponseBody.getAsString())
Curl Command
curl -X GET
-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/settings/synonyms
Postman Collection Item JSON
{
"name": "Get synonyms",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/synonyms",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"synonyms"
]
}
},
"response": [
]
}