IntegrationsConfluenceActions
Get Confluence space
Get one Confluence Cloud space by id.
spaces.get · 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 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 64 |
key | string | Yes | minLength 1; maxLength 255 |
name | string | Yes | maxLength 255 |
type | string | No | minLength 1; maxLength 64 |
status | string | No | enum current | archived |
url | string | No | maxLength 2048 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"space_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"space_id"
]
}Output
{
"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"
]
}