---
title: "aeontel page"
description: "Manage pages (MDX documents + dashboards)"
section: "CLI"
group: "Commands"
order: 823
---

## Page commands

### `aeontel page list`

List pages in a workspace

```ts
aeontel page list --workspace <id> [--parent <id>] [--kind <kind>]
```

```bash
aeontel page list --workspace wsp_...
```

### `aeontel page create`

Create a page or dashboard

```ts
aeontel page create --workspace <id> --title <title> [--slug <slug>] [--body <mdx>] [--body-file <path>] [--parent <id>] [--kind <kind>]
```

```bash
aeontel page create --workspace wsp_... --title <title>
```

### `aeontel page get`

Get page details

```ts
aeontel page get <id>
```

```bash
aeontel page get id_...
```

### `aeontel page update`

Rename, move, or edit a page

```ts
aeontel page update <id> [--title <title>] [--slug <slug>] [--body <mdx>] [--body-file <path>] [--parent <id>]
```

```bash
aeontel page update id_...
```

### `aeontel page delete`

Soft-delete a page and its descendants (restorable until retention expires)

```ts
aeontel page delete <id>
```

```bash
aeontel page delete id_...
```

### `aeontel page move`

Move a page up or down within its siblings

```ts
aeontel page move <id> --direction <up|down>
```

```bash
aeontel page move id_... --direction
```

### `aeontel page resolve`

Resolve a slash-separated slug path to a page

```ts
aeontel page resolve --workspace <id> --path <path>
```

```bash
aeontel page resolve --workspace wsp_... --path <path>
```

### `aeontel page restore`

Restore a soft-deleted page

```ts
aeontel page restore <id>
```

```bash
aeontel page restore id_...
```
