get_page_children
Retrieve child pages of a specific Confluence page using its ID, with options for pagination, result limits, and body format output.
Instructions
Get child pages of a specific page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bodyFormat | No | Body format to include: "storage" or "view" (optional) | |
| limit | No | Maximum results (default: 25) | |
| pageId | Yes | Parent page ID | |
| start | No | Starting index for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"bodyFormat": {
"description": "Body format to include: \"storage\" or \"view\" (optional)",
"enum": [
"storage",
"view"
],
"type": "string"
},
"limit": {
"default": 25,
"description": "Maximum results (default: 25)",
"type": "number"
},
"pageId": {
"description": "Parent page ID",
"type": "string"
},
"start": {
"default": 0,
"description": "Starting index for pagination (default: 0)",
"type": "number"
}
},
"required": [
"pageId"
],
"type": "object"
}