Method Not Allowed

This error occurs when the HTTP method used in the request is not supported for the requested resource.

Description

Your client application issued a request to an API using an HTTP method (e.g., POST, PUT, DELETE) that is not allowed for the specified endpoint or resource.

Example

{
  "type": "https://dev.euipo.europa.eu/problems-registry/method-not-allowed",
  "title": "Method Not Allowed",
  "status": 405,
  "detail": "The method is not allowed for the requested URL",
  "instance": "/trademark-search/trademarks/W00964495",
  "code": "method-not-allowed",
  "correlationId": "ff5084f17c13db59bada6c064d4b8a9a"
}

Troubleshooting Steps

  • Review the API documentation: Verify which HTTP methods are supported for the endpoint you're trying to access.
  • Check the HTTP method: Ensure you're using the correct HTTP method (GET, POST, PUT, PATCH, DELETE, etc.) as specified in the API documentation.
  • Verify the endpoint: Confirm that you're accessing the correct URL path and that the resource exists.
  • Check for typos: Ensure there are no typos in the HTTP method or endpoint URL.