Hi,
My team created searches in Kibana to find interesting documents. We made those using Lucene. We now want to access the results of these searches using an API. The elasticsearch _search endpoint allows us to create a similar query but we can't find a way to ask for the results of the saved query in Kibana. The reason for wanting to do this, is that if our analysts refine the search, we want these new results returned by the API without having to update our POST request to the _search endpoint.
Roel