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.
content.restrictions.list · Confluence · v1
Details
Scopes
read:content-details:confluenceoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
content_type | string | Yes | enum page |
content_id | string | Yes | minLength 1; maxLength 64 |
operation | string | Yes | enum read |
offset | integer | No | minimum 0; maximum 10000 |
page_size | integer | No | minimum 1; maximum 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
restrictions | array<object> | Yes | maxItems 100 |
restrictions[] | object | Yes | additionalProperties false |
restrictions[].principal_type | string | Yes | enum user | group |
restrictions[].principal_id | string | Yes | minLength 1; maxLength 64 |
restrictions[].display_name | string | No | maxLength 255 |
next_offset | integer | No | minimum 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"
]
}