PUT /order/4321 HTTP/1.1
Host: example.com
Content-Type: application/xml
Content-Length: 246
<order xmlns="http://schemas.example.com/order">
<location>takeAway</location>
<items>
<item>
<milk>skim</milk>
<name>cappuccino</name>
<quantity>1</quantity>
<size>large</size>
</item>
</items>
</order>Odpověď
HTTP/1.1 200 OK
Content-Length: 275
Content-Type: application/xml
Date: Sun, 30 Nov 2008 21:47:34 GMT
<order xmlns="http://schemas.example.com/order">
<location>takeAway</location>
<items>
<item>
<milk>skim</milk>
<name>cappuccino</name>
<quantity>1</quantity>
<size>large</size>
</item>
</items>
<status>preparing</status>
</order>