Skip to main content
FuseFuse
IntegrationsConfluenceActions

List Confluence page restrictions

List direct page read restrictions. content_type is page-only because Confluence Cloud does not expose folder restrictions through the supported endpoint.

Agent markdown

content.restrictions.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-details:confluence
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
content_typestringYesenum page
content_idstringYesminLength 1; maxLength 64
operationstringYesenum read
offsetintegerNominimum 0; maximum 10000
page_sizeintegerNominimum 1; maximum 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
restrictionsarray<object>YesmaxItems 100
restrictions[]objectYesadditionalProperties false
restrictions[].principal_typestringYesenum user | group
restrictions[].principal_idstringYesminLength 1; maxLength 64
restrictions[].display_namestringNomaxLength 255
next_offsetintegerNominimum 0; maximum 10000

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "content_type": {
      "type": "string",
      "enum": [
        "page"
      ]
    },
    "content_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "operation": {
      "type": "string",
      "enum": [
        "read"
      ]
    },
    "offset": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10000
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "content_type",
    "content_id",
    "operation"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "restrictions": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "principal_type": {
            "type": "string",
            "enum": [
              "user",
              "group"
            ]
          },
          "principal_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "display_name": {
            "type": "string",
            "maxLength": 255
          }
        },
        "required": [
          "principal_type",
          "principal_id"
        ]
      },
      "maxItems": 100
    },
    "next_offset": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10000
    }
  },
  "required": [
    "restrictions"
  ]
}