Skip to main content
FuseFuse
IntegrationsConfluenceActions

Get Confluence space

Get one Confluence Cloud space by id.

Agent markdown

spaces.get · 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
space_idstringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 64
keystringYesminLength 1; maxLength 255
namestringYesmaxLength 255
typestringNominLength 1; maxLength 64
statusstringNoenum current | archived
urlstringNomaxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "space_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "space_id"
  ]
}
Output
{
  "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"
  ]
}