+1 vote
in ElasticSearch by

What is the syntax or code to retrieve a document by ID in Elasticsearch?

1 Answer

0 votes
by

GET API retrieves the specified JSON document from an index.

Syntax:

_______________________________

GET <index_name>/_doc/<_id>

...