Skip to main content
FuseFuse
IntegrationsConfluenceActions

List Confluence pages

List Confluence page metadata in a space for discovery and watermark sync.

Agent markdown

pages.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:page:confluence
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
space_idstringYesminLength 1; maxLength 64
cursorstringNominLength 1; maxLength 2048
page_sizeintegerNominimum 1; maximum 100
statusstringNoenum current | archived | trashed
sortstringNoenum id | -id | created-date | -created-date | modified-date | -modified-date

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
pagesarray<object>YesmaxItems 100
pages[]objectYesadditionalProperties false
pages[].idstringYesminLength 1; maxLength 64
pages[].titlestringYesmaxLength 512
pages[].statusstringYesenum current | archived | trashed
pages[].space_idstringYesminLength 1; maxLength 64
pages[].parent_idstringNominLength 1; maxLength 64
pages[].parent_typestringNominLength 1; maxLength 64
pages[].author_idstringNominLength 1; maxLength 64
pages[].created_atstringNomaxLength 64
pages[].updated_atstringNomaxLength 64
pages[].revisionstringNomaxLength 64
pages[].urlstringNomaxLength 2048
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "space_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "status": {
      "type": "string",
      "enum": [
        "current",
        "archived",
        "trashed"
      ]
    },
    "sort": {
      "type": "string",
      "enum": [
        "id",
        "-id",
        "created-date",
        "-created-date",
        "modified-date",
        "-modified-date"
      ]
    }
  },
  "required": [
    "space_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "pages": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "title": {
            "type": "string",
            "maxLength": 512
          },
          "status": {
            "type": "string",
            "enum": [
              "current",
              "archived",
              "trashed"
            ]
          },
          "space_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "parent_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "parent_type": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "author_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "created_at": {
            "type": "string",
            "maxLength": 64
          },
          "updated_at": {
            "type": "string",
            "maxLength": 64
          },
          "revision": {
            "type": "string",
            "maxLength": 64
          },
          "url": {
            "type": "string",
            "maxLength": 2048
          }
        },
        "required": [
          "id",
          "title",
          "status",
          "space_id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "pages"
  ]
}