method_not_allowed
method_not_allowed
HTTP 405 — The HTTP method is not allowed here.
Returned as application/problem+json with code method_not_allowed and HTTP status 405.
The endpoint exists but does not support the HTTP method you used.
Common causes
- e.g.
POSTto a read-only resource, orDELETEwhere it is not supported.
How to resolve
- Check the API Reference for the methods each endpoint allows.
Example
Retrying without changing the request will not help — fix the request first.