Version: 202601
Remove card from page
DELETE/openapi/2026-01/themes/edit-sessions/:oseid/sections/:section_id
Remove a card from the page within an edit session.
Request
Path Parameters
oseid stringrequired
Edit session ID
section_id stringrequired
Section instance ID to remove. Page-flow mode (area omitted) requires the numeric instance id from content_for_page; with area set, pass the area member's stored id
- application/json
- Body
- Example
Bodyrequired
doc_idstringrequired
Document (template file) ID
areastring
Target area: omit = the page flow; header, footer = remove from the header/footer
area group (section-group themes only)
json
{
"doc_id": "string",
"area": "string"
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
content_for_pageint64[]
New page section order after removal. Empty when area is used — area members are not part of content_for_page
json
{
"code": "string",
"message": "string",
"data": {
"content_for_page": [
0
]
}
}