IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.

Deleting an Index

edit

To delete an index, use the following request:

DELETE /my_index

You can delete multiple indices with this:

DELETE /index_one,index_two
DELETE /index_*

You can even delete all indices with this:

DELETE /_all