PROPPATCH

HTTP method

Specification of the HTTP method PROPPATCH

work in progress
HTTP Method PROPPATCH has been specified in Section 9.2 of Document RFC 4918 by the Internet Engineering Task Force (IETF) and the World Wide Web Consortium (W3C).

Description of the PROPPATCH method

work in progress

Example of HTTP method PROPPATCH

Request header:
PROPPATCH /data HTTP/1.1
Host: api.example.com
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)Chrome/58.0.3029.110 Safari/537
Content-Type: text/xml; charset="utf-8"
Content-Length: 900
Depth: 0
Request body (XML):
<?xml version="1.0" encoding="utf-8"?>
<D:propertyupdate xmlns:D="DAV:">
<D:set>
<D:prop>
<D:author>New Author</D:author>
</D:prop>
</D:set>
</D:propertyupdate>
Response header:
HTTP/1.1 207 Multi-Status
Content-Type: text/xml; charset="utf-8"
Content-Length: [Länge des XML-Antwortinhalts]
Date: Mon, 31 July 2023 14:58:12 GMT
Server: Apache/2.4.7 (Ubuntu)
Response body (XML):
<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:">
[Response details here]
</D:multistatus>