I want to implement the partial updates for my resource as i have large resource and want to update the partial information from it.I have gone through the following links but n
You should use method PATCH like described in RFC-7386 "json merge PATCH".
E.g. if you want to change value of "a" and removing "f" in resource like:
{
"a": "b",
"c": {
"d": "e",
"f": "g"
}
}
You can achive this by sending:
PATCH /target HTTP/1.1
Host: example.org
Content-Type: application/merge-patch+json
{
"a":"z",
"c": {
"f": null
}
}