Unicode C++ / MeiliSearch v0.24 / Delete all documents
Back to Collection Items
void ChilkatSample(void)
{
success = http.HttpNoBody(L"DELETE",L"http://localhost:7700/indexes/indexUID/documents",resp);
}
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": [
]
}