POST {index}/{type}/{_id}/_update
{
"doc": {
"{property}": "{new_value}"
}
}
{
"_index": "{index}",
"_type": "{type}",
"_id": "{id}",
"_version": 2,
"result": "updated",
"_shards": {
"total": 2,
"successful": 2,
"failed": 0
}
}
POST test_index/test_type/AXG4E0J-Oubf9SMJd2vU/_update
{
"doc": {
"value": 200
}
}