confluence_create_page
Create a new Confluence page in a specified space. Provide space ID, title, body in storage or ADF format, and optionally set parent page or status.
Instructions
Create a new page in a space. Requires space ID, title, and body content. Output is trimmed by default (drops _links, _expandable, body content, etc.); pass full=true to receive the raw Confluence response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | The body content. For storage format: XHTML-based markup. For atlas_doc_format: JSON-stringified ADF document. | |
| full | No | If true, bypass response trimming and return the raw Confluence API response. | |
| title | Yes | The title of the page | |
| status | No | Page status (default: current) | |
| spaceId | Yes | The ID of the space to create the page in | |
| parentId | No | The ID of the parent page (optional) | |
| bodyFormat | No | The format of the body content (default: storage). Use atlas_doc_format for ADF JSON. |