Chilkat Online Tools

delphiDll / MeiliSearch v0.24 / Update synonyms

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_Create();

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

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

// {
//   "hp": [
//     "harry potter"
//   ],
//   "harry potter": [
//     "hp"
//   ]
// }

json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'hp[0]','harry potter');
CkJsonObject_UpdateString(json,'"harry potter"[0]','hp');

CkHttp_SetRequestHeader(http,'Content-Type','application/json');
CkHttp_SetRequestHeader(http,'X-Meili-Api-Key','masterKey');

resp := CkHttp_PostJson3(http,'http://localhost:7700/indexes/indexUID/settings/synonyms','application/json',json);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);

CkHttp_Dispose(http);
CkJsonObject_Dispose(json);

Curl Command

curl -X POST
	-H "X-Meili-Api-Key: masterKey"
	-H "Content-Type: application/json"
	-d '{
    "hp": ["harry potter"],
    "harry potter": ["hp"]
}'
http://localhost:7700/indexes/indexUID/settings/synonyms

Postman Collection Item JSON

{
  "name": "Update synonyms",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"hp\": [\"harry potter\"],\n    \"harry potter\": [\"hp\"]\n}"
    },
    "url": {
      "raw": "{{url}}/indexes/{{indexUID}}/settings/synonyms",
      "host": [
        "{{url}}"
      ],
      "path": [
        "indexes",
        "{{indexUID}}",
        "settings",
        "synonyms"
      ]
    }
  },
  "response": [
  ]
}