Skip to main content

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

HTTPWhen
405The 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/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.