get_page_with_attachments
Downloads a Confluence page's content, metadata, and attachments. Use to retrieve a page with all associated files for offline access or analysis.
Instructions
Performs a comprehensive download of a Confluence page, including its full content, metadata, and optionally, all of its attachments. Attachments are base64-encoded. Use this when you need the page content, metadata, and all associated attachments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageId | Yes | The ID of the Confluence page to download. | |
| attachmentTypes | No | An array of MIME types to filter attachments by (e.g., ["image/png", "application/pdf"]). If not specified, all attachment types are included. | |
| maxAttachmentSize | No | The maximum size in bytes for an individual attachment to be downloaded. Default is 50MB. | |
| includeAttachments | No | If true, all attachments on the page will be downloaded and included in the response. Default is true. |