Skip to main content
FuseFuse
IntegrationsConfluenceActions

List Confluence content ancestors

List Confluence page or folder ancestors for hierarchy and restriction walks. Uses continue_from when page_size is reached instead of fabricating a cursor.

Agent markdown

content.ancestors.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:content.metadata:confluence
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
content_typestringYesenum page | folder
content_idstringYesminLength 1; maxLength 64
page_sizeintegerNominimum 1; maximum 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
ancestorsarray<object>YesmaxItems 100
ancestors[]objectYesadditionalProperties false
ancestors[].idstringYesminLength 1; maxLength 64
ancestors[].typestringYesenum page | folder
ancestors[].titlestringNomaxLength 512
continue_fromobjectNoadditionalProperties false
continue_from.content_typestringYesenum page | folder
continue_from.content_idstringYesminLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "content_type": {
      "type": "string",
      "enum": [
        "page",
        "folder"
      ]
    },
    "content_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "content_type",
    "content_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "ancestors": {
      "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
          }
        },
        "required": [
          "id",
          "type"
        ]
      },
      "maxItems": 100
    },
    "continue_from": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "content_type": {
          "type": "string",
          "enum": [
            "page",
            "folder"
          ]
        },
        "content_id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        }
      },
      "required": [
        "content_type",
        "content_id"
      ]
    }
  },
  "required": [
    "ancestors"
  ]
}