Reference : REST XML API reference : Element collection : PUT method
  
PUT method
The following example shows how to use the PUT method to update multiple attributes through one HTTP request. The content type for this request is multipart/related.
URL: https://fpserver.com:9443/fp/resources/workspaces/5/modules/1/elements/.xml
Accept header: application/xml
Content type: multipart/related
Request body:
<attributeChangeCollection xmlns:ns="http://schema.com/focalpoint/resources"> <textAttributeChange href="./14/attributes/2"> <ns:textValue>new text value</ns:textValue> </textAttributeChange> <textAttributeChange href="./15/attributes/2"> <ns:textValue>new text value</ns:textValue> </textAttributeChange> <textListEntryChange href="./14/attributes/223/entries/212309123" > <ns:textValue>replaced value</ns:textValue> </textListEntryChange> </attributeChangeCollection>
Go up to
Element collection