Home Docs Schema Formats Errors

method not allowed

method-not-allowed Error — Conduit Documentation

405 — Method Not Allowed

This HTTP method is not allowed.

What This Error Means

This error indicates that Conduit encountered a condition preventing the request from being completed. Below are the most common causes and how to resolve them.

Common Causes

  • Using PUT on a table that only supports POST
  • Using DELETE on a schema endpoint
  • Policy restrictions

How to Fix It

  • Check allowed methods for the endpoint
  • Use GET/POST/PUT/PATCH/DELETE appropriately
  • Review Conduit policy configuration

Example Request

PUT /v1/schema/books

Example Response

{"error":{"title":"Method Not Allowed","status":405}}

← Back to Error Index