**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` string (required)

  Edit session ID
- `section_id` string (required)

  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**

**Body (required)**

- `doc_id` string (required)

  Document (template file) ID
- `area` string

  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**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `content_for_page` int64[]

    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
    ]
  }
}
```
