Chilkat Online Tools

Perl / MeiliSearch v0.24 / Delete all documents

Back to Collection Items

use chilkat();

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

$http = chilkat::CkHttp->new();

$http->SetRequestHeader("X-Meili-Api-Key","masterKey");

# resp is a HttpResponse
$resp = $http->QuickRequest("DELETE","http://localhost:7700/indexes/indexUID/documents");
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\n";

Curl Command

curl -X DELETE
	-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/documents

Postman Collection Item JSON

{
  "name": "Delete all documents",
  "request": {
    "method": "DELETE",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/indexes/{{indexUID}}/documents",
      "host": [
        "{{url}}"
      ],
      "path": [
        "indexes",
        "{{indexUID}}",
        "documents"
      ]
    }
  },
  "response": [
  ]
}