Insert document into index
Retrieve document by ID
Delete a document by ID
Update an existing document
curl -X POST 'http://localhost:9200/my_index/_update/1?pretty' -H 'Content-Type: application/json' -d '{"doc":{"name":"Jane"}}'
Update user doc
curl -X POST 'http://localhost:9200/users/_update/1?pretty' -H 'Content-Type: application/json' -d '{"doc":{"username":"bob"}}'
Update a single document
Update an existing Jenkins job with new XML config
Get overall Elasticsearch cluster health