Get
Last updated
curl -i -XGET /website/blog/124?prettyHTTP/1.1 404 Not Found
Content-Type: application/json; charset=UTF-8
Content-Length: 83
{
"_index" : "website",
"_type" : "blog",
"_id" : "124",
"found" : false
}GET /website/blog/123?_source=title,text{
"_index" : "website",
"_type" : "blog",
"_id" : "123",
"_version" : 1,
"exists" : true,
"_source" : {
"title": "My first blog entry" ,
"text": "Just trying this out..."
}
}GET /website/blog/123/_source{
"title": "My first blog entry",
"text": "Just trying this out...",
"date": "2014/01/01"
}