+1 vote
in ElasticSearch by (30.6k points)

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

1 Answer

0 votes
by (30.6k points)

GET API retrieves the specified JSON document from an index.

Syntax:

_______________________________

GET <index_name>/_doc/<_id>

Related questions

+1 vote
...