Skip to main content
FuseFuse
IntegrationsConfluenceActions

List Confluence space permissions

List connection-visible Confluence space permission fragments without inventing effective-reader semantics.

Agent markdown

space.permissions.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
space_idstringYesminLength 1; maxLength 64
cursorstringNominLength 1; maxLength 2048
page_sizeintegerNominimum 1; maximum 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
permissionsarray<object>YesmaxItems 100
permissions[]objectYesadditionalProperties false
permissions[].idstringYesminLength 1; maxLength 64
permissions[].principal_typestringYesminLength 1; maxLength 64
permissions[].principal_idstringNominLength 1; maxLength 64
permissions[].operationobjectYesadditionalProperties false
permissions[].operation.keystringYesminLength 1; maxLength 64
permissions[].operation.target_typestringYesminLength 1; maxLength 64
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
    }
  },
  "required": [
    "space_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "permissions": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "principal_type": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "principal_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "operation": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "key": {
                "type": "string",
                "minLength": 1,
                "maxLength": 64
              },
              "target_type": {
                "type": "string",
                "minLength": 1,
                "maxLength": 64
              }
            },
            "required": [
              "key",
              "target_type"
            ]
          }
        },
        "required": [
          "id",
          "principal_type",
          "operation"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "permissions"
  ]
}