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 stringrequired
Edit session ID
- application/json
- Body
- Example
Bodyrequired
forceboolean
Force overwrite even if there is a conflict
json
{
"force": true
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
promotedboolean
Whether the session was promoted into the theme's draft (true on success). This does NOT publish the theme
conflictboolean
Whether a conflict was detected (always false on success)
json
{
"code": "string",
"message": "string",
"data": {
"promoted": true,
"conflict": true
}
}