Back to Elasticsearch Php

Deleting documents [deleting_documents]

docs/reference/deleting_documents.md

9.3.0289 B
Original Source

Deleting documents [deleting_documents]

Finally, you can delete documents by specifying their full /index/_doc_/id path:

php
$params = [
    'index' => 'my_index',
    'id'    => 'my_id'
];

// Delete doc at /my_index/_doc_/my_id
$response = $client->delete($params);