Method not allowed. This typically occurs when the URL you are calling responds to GET or POST requests, but not PUT or DELETE.

This example shows a typical 405 error:

Content-Type: application/problem+json;charset=UTF-8

{  
  "detail": "HTTP method PUT is not allowed. Allowed methods are [POST, GET].",  
  "instance": "/mtls-edge-truststore/error-types/method-not-allowed?traceId=-583949332714814853",  
  "status": 405,  
  "title": "The HTTP method is not allowed.",  
  "type": "/mtls-edge-truststore/error-types/method-not-allowed",  
  "unsupportedMethod": "PUT",  
  "allowedMethods": [  
	"POST",  
	"GET"  
  ]  
}