SiteError.comYour friendly guide to HTTP status codes
Status CodesBlog
  1. Home
  2. 2xx Success
  3. 207 Multi-Status

207 Multi-Status

📊
207
Multi-Status
✨
✨

Example HTTP Response

HTTP Response
HTTP/1.1 207 Multi-Status
Content-Type: application/xml

<?xml version="1.0"?>
<multistatus xmlns="DAV:">...</multistatus>
Common Causes
  • WebDAV batch operations
  • Multiple resources affected in one request
  • Bulk API operations with mixed results
Technical Details

What does this mean?

It's complicated! You asked about multiple things, so here's a status report on each one. Like getting grades for all your classes at once.

Technical Definition

Conveys information about multiple resources, for situations where multiple status codes might be appropriate.

RFC Says

"The 207 (Multi-Status) status code provides status for multiple independent operations. The message body contains a single XML element called 'multistatus' that contains a separate response element for each resource."

Plain English:

Used primarily in WebDAV when you perform operations on multiple resources at once (like copying or deleting multiple files). The response contains individual status codes for each resource - some might succeed while others fail.

View RFC Documentation
Code Snippets

Ready-to-use code for returning this HTTP status in your application:

Node.js
// Express.js
app.get('/example', (req, res) => {
  res.status(207).json({
    error: 'Multi-Status',
    message: 'Your error message here'
  });
});

// Native HTTP
const http = require('http');

http.createServer((req, res) => {
  res.writeHead(207, { 'Content-Type': 'application/json' });
  res.end(JSON.stringify({
    error: 'Multi-Status',
    message: 'Your error message here'
  }));
}).listen(3000);

207 Multi-Status FAQ

What causes a 207 Multi-Status error?

WebDAV batch operations. Multiple resources affected in one request. Bulk API operations with mixed results.

206 Partial Content208 Already Reported

Popular Status Codes

  • 200 OK
  • 301 Moved Permanently
  • 302 Found
  • 400 Bad Request
  • 401 Unauthorized
  • 403 Forbidden
  • 404 Not Found
  • 500 Internal Server Error
  • 502 Bad Gateway
  • 503 Service Unavailable

Compare Codes

  • 401 vs 403
  • 301 vs 302
  • 404 vs 410
  • 500 vs 502
  • Compare any codes →

Categories

  • Informational
  • Success
  • Redirection
  • Client Error
  • Server Error
  • NGINX
  • Cloudflare
  • AWS ELB
  • Microsoft IIS

Tools

  • Cheat Sheet
  • Status Code Quiz
  • URL Checker
  • API Playground
  • Blog

© 2026 SiteError.com. All rights reserved.