> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# pages_move

> Move a page under a different parent page or data source.

<div className="tool-route"><span className="tool-row-method" data-method="POST">POST</span><code>{"https://api.notion.com/v1/pages/{pageId}/move"}</code></div>

```python notion_pages_move.py theme={null}
from charter.packs import notion

result = await notion.pages_move.ainvoke({"pageId": ..., "body": ...})
```

<Note>
  Requires `Update content`.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                          | Type     | Description         |
  | -------------------------------------------------------------- | -------- | ------------------- |
  | `pageId` <span className="required" title="required">\*</span> | `string` | The ID of the page. |
</div>

## Body

<div className="reference-table">
  | Field                                                        | Type                                                             | Description     |
  | ------------------------------------------------------------ | ---------------------------------------------------------------- | --------------- |
  | `body` <span className="required" title="required">\*</span> | [PageMoveBody](/charter/charter/packs/notion/pages/objects#pagemovebody) | The new parent. |
</div>
