Skip to main content
FuseFuse
IntegrationsConfluenceActions

List Confluence content children

List direct children of a Confluence page or folder for source selection and hierarchy preservation. Never returns body content.

Agent markdown

content.children.list · Confluence · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • read:hierarchical-content:confluence
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
parent_typestringYesenum page | folder
parent_idstringYesminLength 1; maxLength 64
cursorstringNominLength 1; maxLength 2048
page_sizeintegerNominimum 1; maximum 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
nodesarray<object>YesmaxItems 100
nodes[]objectYesadditionalProperties false
nodes[].idstringYesminLength 1; maxLength 64
nodes[].typestringYesenum page | folder
nodes[].titlestringNomaxLength 512
nodes[].parent_idstringYesminLength 1; maxLength 64
nodes[].parent_typestringYesenum page | folder
nodes[].statusstringNoenum current | archived | trashed
next_cursorstringNominLength 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"
  ]
}