2xx Success
The server is saying, 'I already told you about this item earlier in the same detailed report, so I’m not repeating it.'
Use 208 inside WebDAV multi-status results when a bound resource was already reported earlier in the same response.
PROPFIND https://api.example.test/collection/
# Headers
Depth: infinity
DAV: bind207 Multi-Status
# Headers
Content-Type: application/xml; charset=utf-8
# Body
<multistatus xmlns="DAV:"><response><href>/collection/</href><propstat><status>HTTP/1.1 200 OK</status></propstat></response><response><href>/collection/alias/</href><propstat><status>HTTP/1.1 208 Already Reported</status></propstat></response></multistatus>The top-level response is 207 Multi-Status, but one repeated binding is marked 208 inside the XML body so the server does not duplicate descendants.