HTTP 424 Failed Dependency is a WebDAV status code indicating the request failed because it depended on another request that also failed. This occurs in multi-operation requests where one operation's failure causes dependent operations to fail.
424 Failed DependencyGET /checkout/confirm HTTP/1.1
Host: www.example.com
User-Agent: Mozilla/5.0
Accept: text/htmlHTTP/1.1 424 Failed Dependency
Content-Type: text/html; charset=utf-8
<!doctype html>
<html>
<body>
<h1>424 Failed Dependency</h1>
<p>This action could not be completed because a required step failed.</p>
</body>
</html>Check the multi-status response for the original operation that failed — the 424 is a cascading effect.
Resolve the root cause issue and retry the entire batch operation.
A batch operation failed on one resource, causing operations on dependent resources to also fail.
| Specification | Section |
|---|---|
| HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV) | RFC 4918 §11.4 |
This reference was compiled from official RFCs, protocol specifications, and hands-on troubleshooting experience. AI tools were used primarily for formatting and organizing the content on the page.