> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.scripe.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Method not allowed

# `method_not_allowed`

| HTTP | When                                                      |
| ---- | --------------------------------------------------------- |
| 405  | The endpoint exists but does not accept this HTTP method. |

For example, `POST /v1/notes/note_123` returns 405 because the route is
GET-only. The response includes an `Allow` header listing the supported
methods:

```http theme={null}
HTTP/1.1 405 Method Not Allowed
Allow: GET
```

Recover by switching to a supported method.

In v1, every endpoint shipping in Phase 2 is GET. Write methods
(`POST`, `PATCH`, `DELETE`) land in Phase 3.
