The Ultimate Guide to HTTP Status Codes (100–599)
A complete reference guide to all HTTP status codes from 100 to 599, with explanations and common use cases.
Feb 28, 2026
2xx Success
The 207 (Multi-Status) status code provides status for multiple independent operations in WebDAV. The response body contains an XML document with individual status codes for each operation. This allows batch operations to report success or failure for each sub-request.
When a WebDAV client sends a PROPPATCH or batch COPY request affecting multiple resources, the server processes each operation independently and returns 207 Multi-Status with an XML body detailing the status of each individual operation.
<?xml version="1.0" encoding="utf-8"?>
<multistatus xmlns="DAV:">
<response>
<href>/files/doc1.txt</href>
<status>HTTP/1.1 200 OK</status>
</response>
<response>
<href>/files/doc2.txt</href>
<status>HTTP/1.1 404 Not Found</status>
</response>
</multistatus>