Core
API v2.x
2

truncate #

Empties a collection by removing all its documents, while keeping any associated mapping.

This action delete then recreate the related Elasticsearch index. Please note that deleting/creating an index cannot be done concurrently within an Elasticsearch cluster, if you need to truncate a lot of collections (for your functional tests for example), then you should use collection:refresh and document:deleteByQuery

Documents removed that way do not trigger real-time notifications.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/<index>/<collection>/_truncate
Method: DELETE

Other protocols #

Copied to clipboard!
{
  "index": "<index>",
  "collection": "<collection>",
  "controller": "collection",
  "action": "truncate"
}

Arguments #

  • collection: collection name
  • index: index name

Response #

Returns a confirmation that the collection is being emptied:

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "action": "truncate",
  "controller": "collection",
  "index": "<index>",
  "collection": "<collection>",
  "requestId": "<unique request identifier>",
  "result": {
    "acknowledged": true,
  }
}

Possible errors #