IntegrationsConfluenceActions
List Confluence space permissions
List connection-visible Confluence space permission fragments without inventing effective-reader semantics.
space.permissions.list · Confluence · v1
Details
Scopes
read:space:confluenceoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
space_id | string | Yes | minLength 1; maxLength 64 |
cursor | string | No | minLength 1; maxLength 2048 |
page_size | integer | No | minimum 1; maximum 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
permissions | array<object> | Yes | maxItems 100 |
permissions[] | object | Yes | additionalProperties false |
permissions[].id | string | Yes | minLength 1; maxLength 64 |
permissions[].principal_type | string | Yes | minLength 1; maxLength 64 |
permissions[].principal_id | string | No | minLength 1; maxLength 64 |
permissions[].operation | object | Yes | additionalProperties false |
permissions[].operation.key | string | Yes | minLength 1; maxLength 64 |
permissions[].operation.target_type | string | Yes | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 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"
]
}