207 Multi-Status
The HTTP207 Multi-Statussuccessful response status code indicates a mixture of responses.This response is used exclusively in the context of Web Distributed Authoring and Versioning (WebDAV).
The response body is atext/xml orapplication/xml HTTP entity with amultistatus root element that lists individual response codes.
Note:Browsers accessing web pages will never encounter this status code.The ability to return acollection of resources is part of theWebDAV protocol and is only encountered by web applications that access a WebDAV server.
In this article
Status
http
207 Multi-StatusExamples
>Receiving a207 response in a WebDAV context
The following response is an example207 response that aWebDAV server sends to a client.There is amultistatus root element with details of the individual collections:
http
HTTP/1.1 207 Multi-StatusContent-Type: application/xml; charset="utf-8"Content-Length: 1241<?xml version="1.0" encoding="utf-8" ?><D:multistatus xmlns:D="DAV:"> <D:response> <D:href>http://www.example.com/Coll/</D:href> <D:propstat> <D:prop> <D:displayname>Loop Demo</D:displayname> <D:resource-id> <D:href>urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf8</D:href> </D:resource-id> </D:prop> <D:status>HTTP/1.1 200 OK</D:status> </D:propstat> </D:response> <D:response> <D:href>http://www.example.com/Coll/Bar</D:href> <D:propstat> <D:prop> <D:displayname>Loop Demo</D:displayname> <D:resource-id> <D:href>urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf8</D:href> </D:resource-id> </D:prop> <D:status>HTTP/1.1 208 Already Reported</D:status> </D:propstat> </D:response></D:multistatus>Specifications
| Specification |
|---|
| RFC 4918> # section-11.1> |