# Invalid method

Resolve invalid method errors.

The HTTP method used in the request is not supported by the endpoint.

Check the endpoint reference for the list of accepted methods.

## Response

All error responses follow the [Problem Details (RFC 9457)](/reference/api/overview#errors) format. The `type`, `title`, `status`, and `detail` fields are always present, while `instance` may be omitted depending on the API.

Here is an example of the response returned for this error:

```json
{
  "type": "https://croct.help/api/authentication/invalid-method",
  "title": "The request method is not allowed.",
  "status": 405,
  "detail": "The HTTP method used in the request is not supported for this endpoint.",
  "instance": "/client/web/content"
}
```
