5xx Server Error

HTTP 501 Not Implemented

The server does not support the functionality required to fulfill the request. This is the appropriate response when the server does not recognize the request method and cannot support it for any resource.

Common Causes

  • Server doesn't support the HTTP method used
  • Feature not yet implemented on the server
  • Using a method the server intentionally doesn't support

How to Fix

  1. 1Use a different HTTP method that the server supports
  2. 2Check if the feature will be available in a future update
  3. 3Implement the missing functionality on the server

Example

HTTP 501 Not Implemented
PATCH /api/resource HTTP/1.1

→ 501 Not Implemented
→ "PATCH method is not supported"

Related Server Error Codes