---
title: "MovePageBody"
description: "Request body for a Page operation."
section: "Reference"
group: "Types"
order: 169
---

## Definition

```ts
interface MovePageBody {
  direction: "up" | "down";
}
```

## Fields

| Field       | Type             | Notes                                                                                                                             |
| ----------- | ---------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| `direction` | `"up" \| "down"` | `required` — Swap position with the previous (`up`) or next (`down`) sibling within the same parent and kind. No-op at the edges. |
