Back to Collection Items
var
http: HCkHttp;
success: Boolean;
jarr: HCkJsonArray;
sbRequestBody: HCkStringBuilder;
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.
// [
// 1,
// 2
// ]
jarr := CkJsonArray_Create();
CkJsonArray_AddIntAt(jarr,-1,1);
CkJsonArray_AddIntAt(jarr,-1,2);
CkHttp_SetRequestHeader(http,'Content-Type','application/json');
CkHttp_SetRequestHeader(http,'X-Meili-Api-Key','masterKey');
sbRequestBody := CkStringBuilder_Create();
CkJsonArray_EmitSb(jarr,sbRequestBody);
resp := CkHttp_PTextSb(http,'POST','http://localhost:7700/indexes/indexUID/documents/delete-batch',sbRequestBody,'utf-8','application/json',False,False);
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);
CkJsonArray_Dispose(jarr);
CkStringBuilder_Dispose(sbRequestBody);
Curl Command
curl -X POST
-H "X-Meili-Api-Key: masterKey"
-H "Content-Type: application/json"
-d '[1, 2]'
http://localhost:7700/indexes/indexUID/documents/delete-batch
Postman Collection Item JSON
{
"name": "Delete documents",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[1, 2]"
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/documents/delete-batch",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"documents",
"delete-batch"
]
}
},
"response": [
]
}