[[rest-api-update-node-properties]]
=== Update node properties ===

This will replace all existing properties on the node with the new set
of attributes.


.Final Graph
["dot", "Final-Graph-Update-node-properties.svg", "neoviz"]
----
  N0 [
    label = "{Node\[0\]|}"
  ]
  N9 [
    label = "{Node\[9\]|age = \'18\'\l}"
  ]
  N9 -> N10 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "knows\n"
  ]
  N10 [
    label = "{Node\[10\]|name = \'joe\'\l}"
  ]
----

_Example request_

* *+PUT+*  +http://localhost:7474/db/data/node/9/properties+
* *+Accept:+* +application/json+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{
  "age" : "18"
}
----


_Example response_

* *+204:+* +No Content+
[source,javascript]
----

----


