Elasticsearch Delete Records From Index Link to heading
curl -XDELETE "https://localhost:9200/mycollection/query" -d '{
"query": {
"match_all": {
"chatbotId": 42069
}
}
}'
curl -XDELETE "http://localhost:9200/conversation_turns/_doc" -d '{
"query": {
"match_all": {
"chatbotId": 42069
}
}
}'