IntegrationsConfluenceActions
List Confluence spaces
List Confluence Cloud spaces visible to the connection for knowledge-source selection.
spaces.list · Confluence · v1
Details
Scopes
read:space:confluenceoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
cursor | string | No | minLength 1; maxLength 2048 |
page_size | integer | No | minimum 1; maximum 100 |
status | string | No | enum current | archived |
keys | array<string> | No | maxItems 50 |
keys[] | string | Yes | minLength 1; maxLength 255 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
spaces | array<object> | Yes | maxItems 100 |
spaces[] | object | Yes | additionalProperties false |
spaces[].id | string | Yes | minLength 1; maxLength 64 |
spaces[].key | string | Yes | minLength 1; maxLength 255 |
spaces[].name | string | Yes | maxLength 255 |
spaces[].type | string | No | minLength 1; maxLength 64 |
spaces[].status | string | No | enum current | archived |
spaces[].url | string | No | maxLength 2048 |
next_cursor | string | No | minLength 1; maxLength 2048 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"status": {
"type": "string",
"enum": [
"current",
"archived"
]
},
"keys": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"maxItems": 50
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"spaces": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"required": [
"spaces"
]
}