Home Docs Schema Formats Errors

conflict

conflict Error — Conduit Documentation

409 — Conflict

A conflict occurred while processing the request.

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

  • Unique constraint violation
  • Duplicate primary key
  • Record already exists

How to Fix It

  • Ensure unique fields are not duplicated
  • Check if the record already exists
  • Use PATCH instead of POST for updates

Example Request

POST /v1/users {"id":1}

Example Response

{"error":{"title":"Conflict","status":409}}

← Back to Error Index