Delete index:
REST Service:
$ curl -XDELETE 'http://localhost:9200/<indexname>'
Delete a type in index:
REST Service :
$ curl -XDELETE 'http://localhost:9200/<indexname>/<typename>'
Delete a particular document:
REST Service :
$ curl -XDELETE 'http://localhost:9200/<indexname>/<typename>/<documentId>'