> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bedrock.cv/llms.txt
> Use this file to discover all available pages before exploring further.

# 409 — Conflict

> The request conflicts with the current state of the resource.

```
Status: 409 Conflict
Code:   CONFLICT
Type:   https://docs.bedrock.cv/errors/conflict
```

## Description

The request could not be completed because it conflicts with the current state of the target resource. This typically occurs when attempting to create a resource that already exists or when concurrent modifications conflict.

## Example

```json theme={null}
{
  "type": "https://docs.bedrock.cv/errors/conflict",
  "title": "Conflict",
  "status": 409,
  "detail": "A drawing with this filename already exists in the project.",
  "code": "CONFLICT",
  "request_id": "req_01JABCD123"
}
```

## Common Causes

* Duplicate resource creation (e.g., uploading a file with the same name)
* Concurrent modifications to the same resource
* Idempotency key collision

## Resolution

Check the `detail` field for specifics. If creating a resource, verify it doesn't already exist. For concurrent modifications, retry with the latest resource state.
