Is the HTTP 501 error suitable for functions that the server plans to support, but currently does not exist, for example, a specific API case? For example, if I was developing a webmail application and I still could not delete emails with attachments, would it be appropriate to give 501 if I received a DELETE request by email with an attachment?
The RFC says that it should be used for an unknown method (for example, a PARTY request), but it is unclear whether it should be used for other functions.
source share