405: Method Not Allowed

HTTP Status Code 405 means Method Not Allowed. This status indicates that the method specified in the request is not allowed for the resource identified by the request URL. For instance, if a client attempts to use a POST request on a resource that only supports GET requests, the server responds with a 405 Method Not Allowed. The response usually includes an Allow header that lists the valid methods for the resource, helping the client understand which actions are permissible.