HTTP 405 Method Not Allowed
Client ErrorThe HTTP method used (GET, POST, PUT, DELETE, etc.) is not supported for the requested resource.
Common Causes
- Using POST on a read-only endpoint
- Using GET on a write-only endpoint
- API endpoint only supports specific methods
- Form action using wrong HTTP method
How to Fix
- Check the Allow response header for supported methods
- Use the correct HTTP method for the endpoint
- Review API documentation for method requirements
Related Status Codes
Need to look up other HTTP status codes?
View the Full HTTP Status Code Reference