method_not_allowed
The HTTP method does not match any registered route handler for this path.
method_not_allowed is returned when the HTTP method in the request (e.g., DELETE) does not match any registered handler for the requested path. This is a client-side error indicating incorrect method usage.
The client sent a request with an HTTP method not supported by the endpoint. For example, sending a DELETE to an endpoint that only accepts GET and PATCH.
Consult the API reference for the correct HTTP method for the endpoint. Common examples: use PATCH not PUT for subscription updates, POST not PUT for resource creation.
{
"error": {
"code": "method_not_allowed",
"message": "method not allowed",
"request_id": "req_01900000abc"
}
}