IntegrationsConfluenceActions
List Confluence content children
List direct children of a Confluence page or folder for source selection and hierarchy preservation. Never returns body content.
content.children.list · Confluence · v1
Details
Scopes
read:hierarchical-content:confluenceoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
parent_type | string | Yes | enum page | folder |
parent_id | string | Yes | minLength 1; maxLength 64 |
cursor | string | No | minLength 1; maxLength 2048 |
page_size | integer | No | minimum 1; maximum 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
nodes | array<object> | Yes | maxItems 100 |
nodes[] | object | Yes | additionalProperties false |
nodes[].id | string | Yes | minLength 1; maxLength 64 |
nodes[].type | string | Yes | enum page | folder |
nodes[].title | string | No | maxLength 512 |
nodes[].parent_id | string | Yes | minLength 1; maxLength 64 |
nodes[].parent_type | string | Yes | enum page | folder |
nodes[].status | string | No | enum current | archived | trashed |
next_cursor | string | No | minLength 1; maxLength 2048 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"parent_type": {
"type": "string",
"enum": [
"page",
"folder"
]
},
"parent_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
}
},
"required": [
"parent_type",
"parent_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"nodes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"type": {
"type": "string",
"enum": [
"page",
"folder"
]
},
"title": {
"type": "string",
"maxLength": 512
},
"parent_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"parent_type": {
"type": "string",
"enum": [
"page",
"folder"
]
},
"status": {
"type": "string",
"enum": [
"current",
"archived",
"trashed"
]
}
},
"required": [
"id",
"type",
"parent_id",
"parent_type"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"required": [
"nodes"
]
}