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

.Final Graph
["dot", "Final-Graph-Update-relationship-properties.svg", "neoviz"]
----
  N238 [
    label = "{Node\[238\]|}"
  ]
  N238 -> N239 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "KNOWS\njim = \'tobias\'\l"
  ]
  N239 [
    label = "{Node\[239\]|}"
  ]
----

_Example request_

* *+PUT+*  +http://localhost:7474/db/data/relationship/108/properties+
* *+Accept:+* +application/json+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{
  "jim" : "tobias"
}
----


_Example response_

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

----


