Chilkat Online Tools

Swift / MeiliSearch v0.24 / Get synonyms

Back to Collection Items

func chilkatTest() {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let http = CkoHttp()
    var success: Bool

    http.SetRequestHeader("X-Meili-Api-Key", value: "masterKey")

    let sbResponseBody = CkoStringBuilder()
    success = http.QuickGetSb("http://localhost:7700/indexes/indexUID/settings/synonyms", sbContent: sbResponseBody)
    if success == false {
        print("\(http.LastErrorText)")
        return
    }

    print("Response status code = \(http.LastStatus.intValue)")
    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": [
  ]
}