Chilkat Online Tools

Swift3 / MeiliSearch v0.24 / Reset 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

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {}

    let json = CkoJsonObject()!

    http.setRequestHeader("Content-Type", value: "application/json")
    http.setRequestHeader("X-Meili-Api-Key", value: "masterKey")

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)

    var resp: CkoHttpResponse? = http.pTextSb("DELETE", url: "http://localhost:7700/indexes/indexUID/settings/synonyms", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -X DELETE
	-H "X-Meili-Api-Key: masterKey"
	-H "Content-Type: application/json"
	-d '"["wizard"]"'
http://localhost:7700/indexes/indexUID/settings/synonyms

Postman Collection Item JSON

{
  "name": "Reset synonyms",
  "request": {
    "method": "DELETE",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "\"[\"wizard\"]\""
    },
    "url": {
      "raw": "{{url}}/indexes/{{indexUID}}/settings/synonyms",
      "host": [
        "{{url}}"
      ],
      "path": [
        "indexes",
        "{{indexUID}}",
        "settings",
        "synonyms"
      ]
    }
  },
  "response": [
  ]
}