Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. {
  2. "_index" : "customer",
  3. "_type" : "_doc",
  4. "_id" : "1",
  5. "_version" : 1,
  6. "_seq_no" : 1,
  7. "_primary_term" : 1,
  8. "found" : true,
  9. "_source" : {
  10. "name" : "ajay"
  11. }
  12. }
  13.  
  14. PUT /customer/_doc/1
  15. {
  16. "firstname": "ajay",
  17. "lastname": "tanwar"
  18.  
  19. }
  20.  
  21. {
  22. "_index" : "customer",
  23. "_type" : "_doc",
  24. "_id" : "1",
  25. "_version" : 2,
  26. "_seq_no" : 2,
  27. "_primary_term" : 1,
  28. "found" : true,
  29. "_source" : {
  30. "firstname" : "ajay",
  31. "lastname" : "tanwar"
  32. }
  33. }
  34.  
  35. POST /customer/_doc/1/_update
  36. {
  37. "doc":{
  38. "firstname": "ajay",
  39. "lastname": "tanwar"
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement