shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/document/products/10283 <<EOF
{
"hello" : "world"
}
EOF
HTTP/1.1 202 Accepted
content-type: application/json; charset=utf-8
etag: "10287"
location: /_db/_system/_api/document/products/10283
{
"_id" : "products/10283",
"_key" : "10283",
"_rev" : "10287",
"_oldRev" : "10283"
}
shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/document/products/10283 <<EOF
{
"numbers" : {
"one" : 1,
"two" : 2,
"three" : 3,
"empty" : null
}
}
EOF
HTTP/1.1 202 Accepted
content-type: application/json; charset=utf-8
etag: "10290"
location: /_db/_system/_api/document/products/10283
{
"_id" : "products/10283",
"_key" : "10283",
"_rev" : "10290",
"_oldRev" : "10287"
}
shell> curl --dump - http://localhost:8529/_api/document/products/10283
HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
etag: "10290"
{
"_key" : "10283",
"_id" : "products/10283",
"_rev" : "10290",
"hello" : "world",
"one" : "world",
"numbers" : {
"one" : 1,
"two" : 2,
"three" : 3,
"empty" : null
}
}
shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/document/products/10283?keepNull=false <<EOF
{
"hello" : null,
"numbers" : {
"four" : 4
}
}
EOF
HTTP/1.1 202 Accepted
content-type: application/json; charset=utf-8
etag: "10294"
location: /_db/_system/_api/document/products/10283
{
"_id" : "products/10283",
"_key" : "10283",
"_rev" : "10294",
"_oldRev" : "10290"
}
shell> curl --dump - http://localhost:8529/_api/document/products/10283
HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
etag: "10294"
{
"_key" : "10283",
"_id" : "products/10283",
"_rev" : "10294",
"numbers" : {
"empty" : null,
"one" : 1,
"three" : 3,
"two" : 2,
"four" : 4
},
"one" : "world"
}