http
PATCH /api/users/42 HTTP/1.1
Host: api.example.com
Content-Type: application/json-patch+json
[{"op": "replace", "path": "/email", "value": "new@example.com"}]
HTTP/1.1 501 Not Implemented
Content-Type: application/json
{
"error": "method_not_implemented",
"message": "PATCH method not implemented, use PUT for updates",
"supported_methods": ["GET", "POST", "PUT", "DELETE"]
}