**Version: 202601**

# Check edit session conflict

**GET** `/openapi/2026-01/themes/edit-sessions/:oseid/conflict`

Check whether the draft has been changed by another session since this edit session started.

## Request

**Path Parameters**

- `oseid` string (required)

  Edit session ID

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `conflict` boolean

    Whether the session conflicts with the current draft

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "conflict": true
  }
}
```
