**Version: 202601**

# Save edit session as draft

**POST** `/openapi/2026-01/themes/edit-sessions/:oseid/promote`

Save an edit session as the draft.

## Request

**Path Parameters**

- `oseid` string (required)

  Edit session ID

**application/json**

**Body | Example**

**Body (required)**

- `force` boolean

  Force overwrite even if there is a conflict

```json
{
  "force": true
}
```

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `promoted` boolean

    Whether the session was promoted into the theme's draft (true on success). This does NOT publish the theme
  - `conflict` boolean

    Whether a conflict was detected (always false on success)

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