Skip to main content
FuseFuse
IntegrationsConfluenceActions

List Confluence spaces

List Confluence Cloud spaces visible to the connection for knowledge-source selection.

Agent markdown

spaces.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:space:confluence
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
cursorstringNominLength 1; maxLength 2048
page_sizeintegerNominimum 1; maximum 100
statusstringNoenum current | archived
keysarray<string>NomaxItems 50
keys[]stringYesminLength 1; maxLength 255

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
spacesarray<object>YesmaxItems 100
spaces[]objectYesadditionalProperties false
spaces[].idstringYesminLength 1; maxLength 64
spaces[].keystringYesminLength 1; maxLength 255
spaces[].namestringYesmaxLength 255
spaces[].typestringNominLength 1; maxLength 64
spaces[].statusstringNoenum current | archived
spaces[].urlstringNomaxLength 2048
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "status": {
      "type": "string",
      "enum": [
        "current",
        "archived"
      ]
    },
    "keys": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 255
      },
      "maxItems": 50
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "spaces": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "key": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "name": {
            "type": "string",
            "maxLength": 255
          },
          "type": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "status": {
            "type": "string",
            "enum": [
              "current",
              "archived"
            ]
          },
          "url": {
            "type": "string",
            "maxLength": 2048
          }
        },
        "required": [
          "id",
          "key",
          "name"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "spaces"
  ]
}